        /* ზოგადი სტილები */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: #fff;
            background-color: #000;
            overflow-y: auto;
        }

        /* მთელი გვერდის კონტენტი ერთ ეკრანზე დასმა */
        html, body {
            height: 100%;
            overflow: auto; /* აჩერებს სქროლს */
        }

        .main-content {
            height: 100%;
            width: 100%;
            display: flex;
            justify-content: flex-start; /* ათავსებს შიგთავსს მარცხნივ */
            align-items: center; /* ტექსტს ვერტიკალურად ცენტრში ათავსებს */
            position: relative;
            z-index: 1;
            overflow: hidden;
            padding-left: 10%; /* ამატებს სიცარიელეს მარცხენა კიდიდან */
        }

        .main-content video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -1; /* უზრუნველყოფს, რომ ვიდეო კონტენტის უკან იყოს */
            transform: translate(-50%, -50%);
        }

        .main-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* მუქი ფენა ტექსტის უკეთ გამოსაჩენად */
            z-index: 0;
        }

        /* ჰედერი */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            color: #fff;
        }

        .header__top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 50px;
            background-color: rgba(0, 0, 0, 0.4);
        }

        .info-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .info-left {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .info-logo, .info-link, .lang-switcher {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }

        .info-logo {
            color: #fff;
            font-weight: bold;
            text-decoration: none;
            font-size: 16px;
            letter-spacing: 1px;
        }

        .logo svg {
            width: 54px;
            height: auto;
            fill: #fff;
        }

        .lang-switcher a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .lang-switcher a:hover {
            color: #f005c0;
        }

        .lang-divider {
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
        }

        .header__navigation-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
        }

        .nav-and-buttons {
            display: flex;
            justify-content: center;
            gap: 60px;
            align-items: center;
            flex-grow: 1;
        }

        .close-menu-btn {
            position: absolute;
            top: 20px;
            right: 40px;
            color: #000;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1000;
        }

        .logo {
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 24px;
            z-index: 12;
        }

        

.menu-items {
    display: flex;
    gap: 60px;
    align-items: center;
}

.menu-items .menu-link {
    color: #fff;
    text-decoration: none;
    transition: font-weight 0.3s;
}

.menu-items .menu-link:hover {
    font-weight: bold;
}






        /* სოციალური ქსელების ხატულების კონტეინერი */
        .social-icons a {
            color: #fff;
            font-size: 18px;
            text-decoration: none;
            transition: color 0.3s ease;
            margin-right: 15px; /* ამატებს დაშორებას ხატულებს შორის */
        }



        .social-icons a:hover {
            color: #f005c0;
        }

        /* სრულ ეკრანზე გამოსატანი მენიუ */
        .fullscreen-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            z-index: 999;
            align-items: center;
            justify-content: space-between;
            transition: transform 0.5s ease-in-out;
            transform: translateY(-100%);
        }

        .fullscreen-menu.is-visible {
            display: flex;
            transform: translateY(0);
        }

        .close-menu-btn {
            position: absolute;
            top: 20px;
            right: 40px;
            color: #555;
            font-size: 54px;
            font-weight: 200;
            cursor: pointer;
            z-index: 1000;
        }

        .menu-left {
            width: 33.33%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            border-right: 1px solid #ddd;
            padding-left: 50px;
        }

        .menu-right {
            width: 66.66%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 50px;
        }

        .menu-title {
            font-size: 2.4rem;
            font-weight: bold;
            color: #555;
            margin: 0;
            padding: 0 20px;
            text-align: left;
        }

        .menu-description {
            font-size: 1.6rem;
            color: #555;
            line-height: 1.5;
            max-width: 600px;
            text-align: left;
            padding: 0 20px;
        }

        /* დასრულდა სრულ ეკრანზე გამოსატანი მენიუ */

        /* მთავარი კონტენტის სტილი */
        .content-wrapper {
            position: relative;
            z-index: 11;
            max-width: 800px;
            padding: 20px;
        }

        .content-wrapper h1 {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .content-wrapper p {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        /* მთავარი ტექსტის კონტეინერი */
        .main-text {
            position: relative;
            z-index: 11;
            max-width: 800px;
            padding: 20px;
        }

        /* მთავარი ტექსტის სტილი */
        .main-text p {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 5px;
            font-family: 'Noto Sans Georgian', sans-serif;
        }

        .button-container {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: transparent;
            border: 2px solid #fff;
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            transition: background-color 0.3s, color 0.3s;
        }

        .btn:hover {
            background-color: #fff;
            color: #000;
        }

        .menu-btn {
            background: none;
            color: #fff;
            padding: 10px 20px;
            font-size: 19px;
            cursor: pointer;
            z-index: 100;
        }

        /* ქვედა ღილაკების კონტეინერი */
        .bottom-buttons {
            position: absolute;
            bottom: 0;
            width: 100%;
            display: flex;
            justify-content: space-around;
            gap: 15px;
            z-index: 10;
        }

        /* ქვედა ღილაკების სტილი */
        .bottom-btn {
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            color: #fff;
            font-size: 19px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            flex-grow: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 66px;
            transition: background-color 0.3s;
        }

        .bottom-btn:hover {
            background-color: rgba(240, 5, 192, 0.5);
        }

        /* QR-კოდის ფორმის სტილი */
        .contact-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .contact-modal.is-visible {
            display: flex;
        }

        .modal-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            position: relative;
            max-width: 400px;
            width: 90%;
            color: #555;
        }

        .close-btn {
            color: #555;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .qr-code-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .qr-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
            color: #555;
        }

        .qr-text {
            font-size: 14px;
            color: #555;
            margin-top: 5px;
        }

        /* მობილურის ადაპტაცია */
        .desktop-only {
            display: block;
        }

        .mobile-only {
            display: none;
        }















/* სათაურის სტილი */
.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

/* ტექსტის სტილი */
.section-text {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto; /* ცენტრში განთავსება */
}

/* ჰორიზონტალური გამყოფი ხაზი */
.separator-line {
    border: none;
    height: 1px;
    background-color: #fff;
    width: 54%;
    margin: 40px auto;
    opacity: 0.3;
    background-color: #f005c0;
    
}



       @media (max-width: 992px) {
    /* ჰედერში ნავიგაციის ბარის დამალვა */
    .menu-items {
        display: none;
    }
    
    /* სრულეკრანიანი მენიუს დამალვა */
    .fullscreen-menu {
        display: none;
    }

    /* კლასები `desktop-only` და `mobile-only` */
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    /* ჰედერის სტილები */
    .header__top-bar {
        padding: 10px 20px;
    }

    .info-left,
    .info-right {
        gap: 10px;
    }

    .header__navigation-bar {
        padding: 20px;
        justify-content: flex-start;
    }

    /* კონტენტის სტილები */
    .main-content {
        justify-content: center;
        padding: 20px;
        height: 71vh;
        display: block;
    }

    .content-wrapper {
        position: relative;
        padding-top: 30vh;
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-text {
        text-align: center;
    }

    .main-text p {
        font-size: 1.3rem;
        line-height: 1.5;
    }

    /* მობილურის კონტენტის სტილები */
    .mobile-content {
        padding: 20px;
        text-align: center;
    }

    .mobile-content h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .mobile-content p {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    /* ქვედა ღილაკების დამალვა */
    .bottom-buttons {
        display: none;
    }


 .mobile-section {
    position: relative;
    z-index: 2;
    background-color: #000;
    padding: 30px 20px 10px 20%; /* ცვლილება აქ */
    text-align: left; /* ტექსტის გასწორება მარცხნივ */
}

    .section-title {
        font-size: 1.3rem;
    }

    .section-text {
        font-size: 1rem;
    }



     .social-icons-mobile {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 20px 0;
    }

    .social-icons-mobile a {
        font-size: 24px;
        color: #fff;
    }


}