@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');



body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #343434, #000000);
    font-family: 'Outfit';
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    top: 0;
}

body::before {
    left: 20%;
}

body::after {
    right: 20%;
}



.theme-icon{
    height: 2rem;
    width: 2rem;
    background-color: transparent;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    position: relative;
    right: 0.5rem;
    cursor: pointer;
    color: white;
}

.theme-icon:hover{
    background-color: whitesmoke;
    color: #1C2582;
}


.theme-icon i{
    font-size: 1.5rem;
    position: relative;
    top: 3px;
    left: 0px;
}

.language-trigger {
            height: 1.5rem;
            width: 1.5rem;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 2px solid transparent;
        }

        .language-trigger:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            border-color: #667eea;
        }

        .language-trigger.active {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .language-icon {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .language-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
        }

        .dropdown-indicator {
            position: absolute;
            bottom: -3px;
            right: -3px;
            background: #667eea;
            color: white;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            border: 2px solid white;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .language-dropdown {
            position: absolute;
            top: calc(100% + 4px); /* Reduced from 8px to 4px */
            right: -90px;
            transform: translateX(-50%) translateY(-10px);
            min-width: 180px;
            background: white;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .language-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            border-bottom: 1px solid #f3f4f6;
        }

        .language-option:first-child {
            border-radius: 8px 8px 0 0;
        }

        .language-option:last-child {
            border-bottom: none;
            border-radius: 0 0 8px 8px;
        }

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

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

        .option-flag {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            flex-shrink: 0;
        }

        .option-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .option-text {
            flex: 1;
            font-size: 14px;
            color: #374151;
            font-weight: 500;
        }

        .checkmark {
            color: #10b981;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .language-option.active .checkmark {
            opacity: 1;
        }

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


.navigation {
    height: 10vh;
    width: min(900px, 90%);
    max-width: 1200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(240, 244, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.63);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    border-radius: 20px;
    display: flex;
    z-index: 999;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo {
    height: 50px;
    width: 140px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

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

.the-navs {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.the-navs ul {
    list-style: none;
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    margin: 0;
    padding: 0;
    align-items: center;
}

.the-navs ul a {
    text-decoration: none;
    font-size: clamp(16px, 1.5vw, 20px);
    white-space: nowrap;
    color: #1C2582;
    transition: opacity 0.3s;
}

.the-navs ul a:hover {
    opacity: 0.7;
}

.home-link {
    font-weight: 600;
}

.Login {
    height: 40px;
    width: 100px;
    border: none;
    background-color: #1C2582;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-family: 'Outfit';
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.translation {
    height: 40px;
    width: 40px;
    background-color: white;
    border-radius: 100%;
    overflow: hidden;
}


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


.translation-dropdown {
    position: absolute;
    right: 20px;
    top: 50px;
}

.Login:hover {
    transform: scale(1.05);
}

.menu {
    display: none;
}



.hero-section {
    height: 600px;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #343434 100%);
    display: flex;
}


.left {
    width: 50%;
    height: 100%;
    /* background-color: red; */
}

.right {
    width: 50%;
    height: 100%;
    /* background-color: blue; */
}


.left-content {
    width: 100%;
    height: 400px;
    /* background-color: yellow; */
    position: relative;
    top: 120px;
}


.live-side {
    height: 1.8rem;
    width: 12rem;
    background-color: rgb(56, 56, 56);
    position: relative;
    left: 5rem;
    border-radius: 20px;
    box-shadow: inset 0 0 8px rgba(113, 114, 114, 0.8);
    display: flex;
    align-items: center;
}


.dot {
    height: 1rem;
    width: 1rem;
    background-color: white;
    position: relative;
    left: 1.5rem;
    border-radius: 100%;

    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 16, 178, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}


.live-side p {
    position: relative;
    /* top: 0.5rem; */
    left: 2rem;
    color: white;
}


.hero-text {
    height: 13rem;
    width: 95%;
    position: relative;
    left: 5rem;
    /* background-color: orange; */
    top: 1rem;
    overflow: hidden;
}


.hero-text h4 {
    font-size: 3.3rem;
    overflow: hidden;
    /* background-color: rebeccapurple; */
    position: relative;
    top: -4rem;
    font-weight: 600;
    color: white;
}

.hero-text span {
    color: rgb(170, 170, 170) !important;
}


.hero-desc {
    width: 96%;
    height: auto;
    /* background-color: lightgray; */
    position: relative;
    left: 5rem;
    top: 0.5rem;

    font-size: 1.3rem;
    color: white;
}

.buttons {
    width: 90%;
    height: auto;
    /* background-color: lightgreen; */
    display: flex;
    gap: 1.5rem;
    position: relative;
    left: 5rem;
    top: 0.6rem;
}


.download {
    height: 3rem;
    width: 15rem;
    border-radius: 999px; /* pill shape = modern */
    border: none;
    background: linear-gradient(135deg, #0000ae, #2a2aff);
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    color: white;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 174, 0.25);
}

/* Hover effect */
.download:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 174, 0.35);
    background: linear-gradient(135deg, #0a0aff, #3b3bff);
}

/* Click effect */
.download:active {
    transform: scale(0.97);
}


.watch {
    height: 3rem;
    width: 15rem;
    border-radius: 999px; /* pill shape to match download */
    border: 1.5px solid rgb(0, 0, 174);
    background: transparent;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    color: rgb(0, 0, 174);
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px); /* subtle glass feel */
}

/* Hover effect */
.watch:hover {
    background: rgba(0, 0, 174, 0.08);
    box-shadow: 0 6px 15px rgba(0, 0, 174, 0.15);
    transform: translateY(-1px);
}

/* Click effect */
.watch:active {
    transform: scale(0.97);
}



.right {
    overflow: hidden;
}

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

.ways-section {
    height: 400px;
    width: 100%;
    /* background: linear-gradient(135deg, #000000 0%, #343434 100%); */
    /* background-color: grey; */
    display: block;
    align-items: center;
}


.head {
    height: 4rem;
    width: 30rem;
    /* background-color: rgb(82, 4, 4); */
    display: block;
    justify-content: center;
    position: relative;
    left: 32%;
    /* overflow: hidden; */
}


.head-text {
    height: auto;
    width: auto;
    /* background-color: lightgreen; */
    text-align: center;
    position: relative;
    bottom: 2rem;
    /* overflow: hidden; */
}


.head-text h4 {
    font-size: 2.5rem;
    color: white;
}


.head-desc {
    height: auto;
    width: 39rem;
    /* background-color: lightblue; */
    position: relative;
    bottom: 4.5rem;
    right: 3rem;
    color: rgb(203, 203, 203);
    z-index: 99;
}


.head-desc p {
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    bottom: 1rem;
}


.the-ways {
    height: 20rem;
    width: 100%;
    /* background-color: #1d4ed8; */
    position: relative;
    top: 1rem;
    display: flex;
}


.old {
    width: 45%;
    height: 20rem;
    background-color: red;
    position: relative;
    left: 2rem;
    border-radius: 20px;
    overflow: hidden;
}

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

.new {
    width: 45%;
    height: 20rem;
    background-color: rgb(0, 255, 102);
    position: relative;
    left: 4rem;
    overflow: hidden;
    border-radius: 20px;
}

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


.bottom-shadow {
    height: 10rem;
    width: 100%;
    background: linear-gradient(to top, #000000 5%, transparent 100%);
    position: absolute;
    bottom: 0px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

}



.bottom-content {
    height: auto;
    width: auto;
    /* background-color: green; */
    position: relative;
    top: 5rem;
    display: flex;
}

.icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    left: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon i{
    font-size: 1.5rem;
    color: white;
}


.old-desc {
    height: auto;
    width: 90%;
    /* background-color: lightgray; */
    position: relative;
    left: 3.5rem;
    /* top: 1rem; */

}

.old-head {
    width: auto;
    height: auto;
    /* background-color: rgb(181, 53, 2); */
    position: relative;
    bottom: 2rem;
    /* color: white; */
}


.old-head h4 {
    font-size: 1.5rem;
    color: rgb(227, 227, 227);
}


.old-head p {
    font-size: 1.1rem;
    position: relative;
    bottom: 2rem;
    color: white;
}


.how-it-works{
    height: 600px;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #343434 100%);
    display: block;
}

.work-content{
    height: 600px;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    position: relative;
    top: 1.4rem;
}


.work-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: 
        radial-gradient(circle, rgba(76, 76, 76, 0.8) 2px, transparent 2px),
        radial-gradient(circle, rgba(83, 83, 83, 0.6) 1.5px, transparent 1.5px);
    background-size: 25px 25px, 15px 15px;
    background-position: 0 0, 12px 12px;
    mask-image: radial-gradient(ellipse at bottom right, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, black 40%, transparent 70%);
}


.how-1{
    width: 40%;
    height: 100%;
    /* background-color: purple; */
    display: block;
}


.how-2{
    width: 50%;
    height: 100%;
    /* background-color: rgb(65, 50, 24); */
    /* overflow: hidden; */
}


.mobil{
    height: 40rem;
    position: relative;
    bottom: 2rem;
}

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

.how-3{
    width: 40%;
    height: 100%;
    /* background-color: blue; */
}

.how-numbers{
    height: 6rem;
    width: 100%;
    /* background-color: rgb(3, 0, 0); */
    position: relative;
    top: 2REM;
}

.no-one{
    width: 80%;
    height: auto;
    /* background-color: red; */
    position: relative;
    left: 3rem;
    display: flex;
    margin-top: 1rem;
}

.one {
    height: 5rem;
    width: 5rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #000000 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
        display: flex;
    justify-content: center;
}

.one h4{
    font-size: 2rem;
    color: white;
    position: relative;
    bottom: 1.45rem;
}


.no-heads h4{
    font-size: 1.5rem;
    font-weight: 500;
    position: relative; 
    /* background-color: grey; */
    bottom: 1.4rem;
    /* left: 1??rem; */
    text-align: start;
    color: white;

}

.no-heads p{
    position: relative;
    bottom: 3rem;
    /* background-color: grey; */
    color: white;
    
}


.no-heads{
    /* background-color: green; */
    /* overflow: hidden; */
    height: 4rem;
    width:85%;
    position: relative;
    left: 0.5rem;
    bottom: 0.5rem;
    text-align: start;
    display: block;
    justify-content: start;
    align-items: start;
}


.business{
    height: 600px;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #343434 100%);
    display: flex;
}


.bus-head{
    position: relative;
    left: 5rem;
    top: 8rem;
    text-align: start;
    /* background-color: red; */
    
}


.bus-text{
    /* background-color: green; */
    position: relative;
    left: 0rem;
    justify-content: start;
}

.bus-text h4{
    position: relative;
    left: 0rem;
    font-size: 1.3rem;
    text-align: start;
    bottom: 2rem;
    color: rgb(144, 144, 144);
}


.bus-desc{
    position: relative;
    left: 0.1rem;
    
}


.bus-desc p{
    text-align: start !important;
    font-size: 2rem;
    font-weight:800;
    color: white;
}


.bus-right{
    height: 600px;
    width: 50%;
    /* background-color: rgb(255, 0, 110); */
    /* overflow: hidden; */
}



.bus-left{
    height: 600px;
    width: 50%;
    /* background-color: rgb(0, 255, 110); */
    /* overflow: hidden; */
    
}
.bus-man{
    height: 600px;
    width: 700px;
    overflow: auto;
    position: relative;
    bottom: 2rem;
    top: -2rem;
    right: 2rem;
    overflow: hidden;
}

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

.the-bus{
    height: auto;
    width: 200%;
    /* background-color: green; */
    position: relative;
    top: 10rem;
    display: flex;
    gap: 3rem;
    z-index: 99;
}


.bus-card{
    height: 14rem;
    width: 12rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    left: 5rem;
    position: relative;
    border-radius: 12px;
    display: block;
    justify-content: center;
    align-items: center;
    color: white;
}


.bus-icon{
    width: 5rem;
    height: 5rem;
    /* background-color: blue; */
    position: relative;
    left: 3.6rem;
    top: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


.bus-icon i{
    font-size: 5rem;
    font-weight: 200;
    color: #0096FF;
}

.bus-name{
    width: 100%;
    height: 2rem;
    /* background-color: red; */
    position: relative;
    top: 2rem;
    display: flex;
    justify-content: center;
}


.bus-name h4{
    position: relative;
    /* left: 0.8rem; */
    font-weight: 500;
    position: relative;
    bottom: 1rem;
}


.bus-idea{
    text-align: center;
    position: relative;
    top: 1.5rem;
    font-size: 0.8rem;
    font-weight: 200;
    /* background-color: red; */
    width: 10rem;
    position: relative;
    left: 1rem;
}




.FAQ {
    margin-top: clamp(60px, 10vh, 100px);
}

.the-FAQ {
    width: 100%;
    padding: clamp(30px, 5vh, 60px) 0;
    
}

.FAQs {
    width: min(800px, 95%);
    color: white;
    max-width: 900px;
    min-height: 500px;
    background: linear-gradient(135deg,
    #000000 0%,
    #0b0b0b 25%,
    #141414 50%,
    #080808 75%,
    #000000 100%);

    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid grey;
    padding: clamp(20px, 3vw, 40px);
    box-sizing: border-box;
    margin: 0 auto;
}

.question {
    width: 100%;
    min-height: 40px;
    height: auto;
    margin-top: clamp(10px, 1.5vh, 15px);
    display: flex;
    align-items: center;
    padding: clamp(10px, 1.5vw, 20px);
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.question h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    color: black;
    margin: 0;
    flex: 1;
    color: white;
    line-height: 1.4;
}

.question i {
    font-size: clamp(24px, 3vw, 30px);
    color: black;
    transition: transform 0.3s ease;
    margin-left: 10px;
    color: white;
}

.answer {
    width: 100%;
    display: none;
    padding: clamp(15px, 2vw, 20px);
    min-height: 50px;
    height: auto;
    color: white;
    margin-top: 2px;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    box-sizing: border-box;
}

.answer.show {
    display: block;
}

.answer p {
    margin: 0;
    color: black;
    line-height: 1.6;
    font-size: clamp(16px, 1.8vw, 18px);
    color: white;
}

/* ============================================
   FOOTER - RESPONSIVE
   ============================================ */

.footer {
            background: #000000;
            color: #888;
            padding: 60px 40px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-brand h2 {
            color: #fff;
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 6px;
            display: inline-block;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
        }

        .footer-section h3 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            left: 2.4rem;
        }

        .footer-section ul {
            list-style: none;
        }

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

        .footer-section ul li a {
            color: #888;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #fff;
        }

        .app-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .app-button {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #1a1a1a;
            padding: 10px 16px;
            border-radius: 8px;
            text-decoration: none;
            color: #fff;
            transition: background 0.3s;
        }

        .app-button:hover {
            background: #2a2a2a;
        }

        .app-button img {
            width: 24px;
            height: 24px;
        }

        .app-button-text {
            display: flex;
            flex-direction: column;
        }

        .app-button-small {
            font-size: 10px;
            color: #888;
        }

        .footer-logo{
            width: 170px;
        }

        .app-button-large {
            font-size: 14px;
            font-weight: 600;
        }

        .the-menu{
            display: none;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #222;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #1a1a1a;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #667eea;
            color: #fff;
        }

        .copyright {
            font-size: 13px;
            color: #666;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer {
                padding: 40px 20px 20px;
            }
        }





@media (max-width: 480px) {
    .navigation {
        width: 90%;
        max-width: 360px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 15px;
        height: 60px;
        overflow: hidden;
    }

    


    .left-wing-cont {
        display: none;
    }



    .button-download {
        position: absolute;
        bottom: 200px;
    }

    .right-wing {
        display: none;
    }


    .the-name-start {
        /* background-color: red; */
        width: 360px;
        height: 100px;
        position: absolute;
        top: 115px;
    }


    .the-name-start h4 {
        font-size: 42px;
        font-weight: 400;
    }

    .the-about {
        margin-top: -80px;
        position: relative;
        bottom: auto;
        overflow: hidden;
    }

    .logo {
        width: 110px;
        height: 40px;
        top: 5px;
    }

    .the-navs {
        display: none;
    }

    .Login {
        display: none;
    }

    .language-selector-wrapper{
        display: none;
    }
    .theme-icon{
        overflow: hidden;
        position: relative;
        left: 7.5rem;
        top: 2.5px;
    }

    .menu {
        height: 40px;
        width: 40px;
        position: absolute;
        right: 15px;
        top: 13px;
        color: #1C2582;
        display: block;
    }


    .menu:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }

        .menu i {
            font-size: 24px;
            color: #1C2582;
        }

        /* The Menu Container */
        .the-menu {
            height: auto;
            width: 360px;
            max-width: calc(100vw - 40px);
            background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 255, 0.98) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.8);
            position: fixed;
            z-index: 112;
            top: 90px;
            right: 20px;
            border-radius: 20px;
            padding: 24px 0;
            display: none;
            flex-direction: column;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            animation: slideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .the-menu.show {
            display: flex;
        }

        /* Menu Header */
        .menu-header {
            padding: 0 24px 20px;
            border-bottom: 2px solid rgba(28, 37, 130, 0.1);
            margin-bottom: 8px;
        }

        .menu-header h3 {
            font-size: 20px;
            color: #1C2582;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .menu-header p {
            font-size: 13px;
            color: #64748b;
        }

        /* Menu List */
        .the-menu ul {
            display: flex;
            flex-direction: column;
            gap: 4px;
            list-style: none;
            padding: 0 12px;
            margin: 0;
            width: 100%;
        }

        .the-menu a {
            text-decoration: none;
            width: 100%;
            display: flex;
            align-items: center;
        }

        .the-menu li {
            padding: 14px 16px;
            font-size: 15px;
            font-weight: 600;
            color: #334155;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 12px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .the-menu li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(135deg, #1C2582 0%, #3b82f6 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .the-menu li:hover {
            background: linear-gradient(135deg, rgba(28, 37, 130, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
            color: #1C2582;
            transform: translateX(4px);
        }

        .the-menu li:hover::before {
            transform: scaleY(1);
        }

        .the-menu li i {
            font-size: 18px;
            width: 24px;
            color: #1C2582;
            transition: all 0.3s ease;
        }

        .the-menu li:hover i {
            transform: scale(1.1);
        }

        /* Language Toggle Section */
        .language-section {
            padding: 16px 24px;
            margin: 12px 12px 16px;
            border-top: 2px solid rgba(28, 37, 130, 0.1);
            border-bottom: 2px solid rgba(28, 37, 130, 0.1);
        }

        .language-label {
            font-size: 13px;
            font-weight: 600;
            color: #64748b;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .language-label i {
            font-size: 16px;
        }

        .language-toggle {
            display: flex;
            background: #f1f5f9;
            border-radius: 12px;
            padding: 4px;
            gap: 4px;
        }

        .lang-option {
            flex: 1;
            padding: 10px 16px;
            border: none;
            background: transparent;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #64748b;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .lang-option.active {
            background: linear-gradient(135deg, #1C2582 0%, #3b82f6 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(28, 37, 130, 0.3);
        }

        .lang-option:hover:not(.active) {
            background: rgba(28, 37, 130, 0.1);
            color: #1C2582;
        }

        /* Login Button */
        .Login {
            margin: 8px 12px 0;
            padding: 16px 24px;
            background: linear-gradient(135deg, #1C2582 0%, #3b82f6 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(28, 37, 130, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .Login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(28, 37, 130, 0.4);
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        }

        .Login:active {
            transform: translateY(0);
        }

        .Login i {
            font-size: 18px;
        }

        /* Animation */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Demo text */
        .demo-text {
            color: white;
            text-align: center;
            margin-top: 100px;
            font-size: 18px;
        }


        .menu i{
            font-size:2rem;
        }
    


    body {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
        width: 100%;
        /* background-color: greenyellow; */
    }

    * {
        max-width: 100vw;
        overflow-x: hidden;
    }


    .hero-section{
        background-color: green !important;
        display: block;
        overflow: hidden;
        height: auto;
        /* height: 30rem; */
    }

    .left{
        /* background-color: red; */
        width: 100%;
        /* height: auto; */
        overflow: hidden;
        height: 27rem;
    }

    .left-content{
        overflow: hidden;
        /* background-color: grey; */
        justify-content: center;
        height: 20rem;
    }

    .live-side{
        position: relative;
        left: 6rem;
        overflow: hidden;
    }

    .hero-text{
        /* background-color: green; */
        position: relative;
        left: 0.6rem;
        height: 8rem;
        /* bottom: 5rem; */
    }

    .hero-text h4{
        font-size: 1.9rem;
        text-align: center;
        position: relative;
        /* bottom: 0rem; */
        top: -2.1rem;
    }

    .hero-desc{
        /* background-color: blue; */
        position: relative;
        left: 0.4rem;
        text-align: center;font-size: 1rem;
    }

    .buttons{
        position: relative;
        left: 1rem;
    }

    .right{
        height: 30rem;
        /* background-color: red; */
        width: 100%;
    }


    .ways-section{
        background-color: red;
        height: 40rem;
        overflow: hidden;
    }


    .head{
        /* background-color: green; */
        height: 7rem;
        position: relative;
        left: 0.4rem;
        overflow: hidden;
    
    }

    .head-text h4{
        position: relative;
        font-size: 1.7rem;
    }

    .head-desc{
        /* background-color: red; */
        position: relative;
        left: 0rem;
        height: 5rem;
        overflow: hidden;
    }


    .the-ways{
        display: block;
        overflow: hidden;
        height: auto;
    }

    .old{
        width: 21rem;
        position: relative;
        left: 1rem;
        height: 14rem;
        overflow: hidden;
    }

    .new{
        width: 21rem;
        position: relative;
        left: 1rem;
        height: 14rem;
        overflow: hidden;
        margin-top: 2rem;
    }

    .bottom-shadow{
        overflow: hidden;
    }

    .icon{
        position: relative;
        left: 1.5rem;
    }

    .old-desc{
        position: relative;
        left: 2rem;
    }


    .old-head{
        /* background-color: red; */
    }

.old-head h4{
    font-size: 1.4rem;
}

.old-head p{
    font-size: 1rem;
    color: rgb(134, 134, 134);
}


.how-it-works{
    overflow: hidden;
    height: 50rem;
    background-color: red;
    height: 100rem;
}

  .work-content{
    background-color: rgb(21, 255, 0);
    display: block; 
    /* grid-template-columns: repeat(2, 1fr); */
    overflow: hidden;
    height: 120rem;
  }


  .how-1{
    /* background-color: rgb(76, 0, 255); */
    /* width: 100%; */
    overflow: hidden;
    /* height: 100%; */
    width: 30rem;
    height: 30rem;
  }

  .how-2{
    /* background-color: rgb(65, 50, 24); */
    overflow: hidden;
    height: 35rem;
    width: 100%;
  }
  

  .mobil{
    height: 30rem;
    width: 30rem;
    position: relative;
    top: 0rem;
    height: auto;
  }

  .one h4{
    /* background-color: red; */
    position: absolute;
    bottom: -1.1rem;
    height: 2rem;
    overflow: hidden;
  }


  .how-3{
    /* background-color: blue; */
    width: 100%;
    height: 30rem;
    /* margin-top: 0rem; */
    position: relative;
    bottom: 4rem;
    overflow: hidden;
  }

  .one{
    overflow: hidden;
  }

  .no-heads{
    overflow: hidden;
    /* background-color: green; */
    height: 6rem;
  }

  .how-numbers{
    height: auto;
  }



  .business{
    /* background-color: green; */
    display: block;
    overflow: hidden;
    height: 120rem;
  }

  .bus-right{
    /* background-color: green; */
    width: 100%;
    height: 90rem;
    overflow: hidden;
  }

  .bus-head{
    /* height: 0rem; */
    /* background-color: red; */
    height: 8rem;
    position: inherit;
    top: 2rem !important;

  }

  .bus-text{
    /* background-color: grey; */
  }

  .bus-text h4{
    position: relative;
    top:0.5rem;
    font-size: 1.3rem;
    font-weight: 300;
  }


  .bus-desc{
    /* background-color: rgb(0, 255, 0); */
    height: 8rem;
    position: relative;
    bottom:3rem;
  }



  .bus-desc p{
    font-size: 1.4rem;
  }


  .the-bus{
    /* background-color: grey; */
    /* height: 140rem; */
    display: block;
    position: inherit;
    bottom: 5rem;
    /* bottom: 5rem; */
    /* grid-template-columns: repeat(2, 1fr); */
  }

  .bus-card{
    position: relative;
    left: 2.7rem;
    margin-top: 2rem;
    width: 18rem;
    overflow: hidden;
  }

  .bus-icon{
    position: relative;
    left: 7rem;
  }


  .bus-name{
    /* background-color: red; */
    height: 2rem;
    overflow: hidden;
    /* height: auto; */
  }


  .bus-name h4{
    position: relative;
    bottom: 1rem;
    height: 3rem;
  }

  .bus-idea{
    position: relative;
    /* bottom: -20rem; */
    /* background-color: grey; */
    left: 3rem;
    width: 12rem;
    font-size: 1rem;
  }


  .bus-left{
    /* background-color: red; */
    width: 100%;
  }


  .bus-man{
    position: relative;
    left: 0rem;
    width: 120%;
    height: 100%;
    /* background-color: green; */
  }


  .footer-logo{
    width: 10rem;
  }

  .footer-section h3{
    /* background-color: red; */
    position: inherit;
  }

  .footer-section li{
    /* background-color: red; */
    position: relative;
    left: 1px;
  }

 
}