    /* Chrome / Edge / Safari */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: linear-gradient(to bottom,
                #050505,
                #0b0b0b);
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg,
                #2a2a2a,
                #1a1a1a);
        border-radius: 50px;
        border: 2px solid rgba(0, 0, 0, 0.6);
        box-shadow:
            inset 0 0 6px rgba(255, 255, 255, 0.05),
            0 0 10px rgba(0, 0, 0, 0.6);
        transition: all 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg,
                #3a3a3a,
                #1f1f1f);
        box-shadow:
            inset 0 0 8px rgba(255, 255, 255, 0.08),
            0 0 14px rgba(255, 255, 255, 0.06);
    }

    /* Firefox */
    * {
        scrollbar-width: thin;
        scrollbar-color: #2a2a2a #050505;
    }

    /* Smooth feel for whole page */
    html {
        scroll-behavior: smooth;
    }


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

    #loader {
        position: fixed;
        inset: 0;
        background: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 999999;
        transition: opacity 1s ease;
    }

    .loader-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .loader-content img {
        width: 120px;
        opacity: 0;
        animation: fadeLogo 2s ease forwards;
    }

    .loader-content span {
        color: #fff;
        font-size: 14px;
        letter-spacing: 8px;
        text-transform: uppercase;
        opacity: 0;
        animation: fadeText 2s ease .5s forwards;
    }

    #loader.hidden {
        opacity: 0;
        pointer-events: none;
    }

    @keyframes fadeLogo {
        0% {
            opacity: 0;
            transform: scale(.9);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes fadeText {
        0% {
            opacity: 0;
            letter-spacing: 20px;
        }

        100% {
            opacity: .8;
            letter-spacing: 8px;
        }
    }

    /* @font-face {
        font-family: Main;
        src: url(Font/Outfit-SemiBold.ttf);
    } */

    @font-face {
        font-family: Cinema;
        src: url(Font/Goldman-Regular.ttf);
    }

    .h1-mt {
        margin-top: 12vh;
        margin-bottom: 12vh;
    }

    .section {
        width: min(100% - 10px, 1800px);
        margin-left: auto;
        margin-right: auto;
        padding-left: 50px;
        padding-right: 50px;
    }

    .h1tag {
        font-family: Cinema;
    }

    .f-size {
        font-size: 25px;
    }

    .basic-font {
        font-family: Cinema;
    }

    html,
    body {
        width: 100%;
        height: 100%;
    }

    body {
        background: black;
        color: white;
        font-family: Cinema;
    }

    .header {
        position: relative;
        height: 100vh;
        max-width: 100%;
    }

    /* =========================
    FIXED CAROUSEL
    ========================= */

    .carousel {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        cursor: grab;
    }

    .carousel:active {
        cursor: grabbing;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 120%;

        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;

        display: flex;
        align-items: center;
        justify-content: center;

        will-change: transform;
    }

    .slide .gallery-images .img-special {
        top: 100px !important;
    }


    .gallery-slide {
        background: black;
    }

    .gallery-images {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .gallery-images img {
        width: 33.333%;
        height: 100%;
        object-fit: cover;
    }

    /* =========================
        FLEX-BOX (Z O N A ფოტოებისთვის)
    ========================= */
    .flex-box {
        display: grid;
        grid-template-columns: repeat(4, 1fr);

        height: 150px;

        width: 90%;
        max-width: 600px;

        gap: 35px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
        margin-top: -100px;
    }

    .flex-box img {
        width: 120%;
        height: 85%;

        object-fit: cover;
        border-radius: 4px;
    }

    .gallery-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .gallery-slide h1 {
        position: relative;
        z-index: 2;
        color: white;
        font-size: 60px;
    }

    .slide h1 {
        font-size: 4rem;
        text-align: center;
    }

    .zona-icon {
        width: 70px;
        transition: opacity 0.4s ease;
    }

    .hover-img {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .primary-img {
        opacity: 1;
    }

    .nav-item:hover .primary-img {
        opacity: 0;
    }

    .nav-item:hover .hover-img {
        opacity: 1;
    }

    .nav-links {
        position: sticky;
        top: 30px;
        z-index: 1000;

        margin: 0 auto;

        height: 0;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;

        overflow: visible;
        pointer-events: none;
    }

    .nav-links>div,
    .nav-links a {
        pointer-events: auto;
    }

    .nav-item {
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: 0.3s;
        position: relative;
        display: inline-block;
    }

    .main-links {
        display: flex;
        gap: 35px;
        justify-self: center;
        padding: 14px 28px;
        border-radius: 50px;

        padding: 14px 28px;
        border-radius: 50px;
    }

    .icons {
        display: flex;
        gap: 25px;
        justify-self: end;
    }

    .fa-brands,
    .fa-regular {
        font-size: 20px;
    }

    .carousel-controls {
        position: absolute;
        bottom: 50px;
        right: 50px;
        display: flex;
        align-items: center;
        gap: 20px;
        z-index: 100;
    }

    .carousel::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to top, black, transparent);
        z-index: 5;
        pointer-events: none;
    }

    .arrow {
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .arrow:hover {
        background: white;
        color: black;
    }

    .indicators {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .indicator {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: width 0.5s ease;
    }

    .indicator.active {
        width: 70px;
        background: rgba(255, 255, 255, 0.1);
    }

    .progress {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: white;
    }

    /* =========================
    ZONA SHOWCASE
    ========================= */

    .zona-showcase {
        gap: 5vh;
        display: flex;
        flex-direction: column;
    }

    /* LEFT */

    .showcase-left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .big-logo {
        width: 100%;
        max-width: 380px;
        object-fit: contain;
    }

    /* RIGHT */

    .showcase-right {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        justify-items: center;
    }

    @media (max-width: 1200px) {
        .showcase-right {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 650px) {
        .showcase-right {
            grid-template-columns: 1fr;
        }
    }

    /* CARDS */

    .media-card {
        width: 100%;
        max-width: 360px;
        height: 200px;

        border-radius: 16px;
        overflow: hidden;
        background: #111;
    }

    .media-card video,
    .media-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* IMPORTANT FIX - PREVENT OVERFLOW ISSUES */

    .showcase-right,
    .showcase-left {
        min-width: 0;
    }

    /* RESPONSIVE */

    @media (max-width: 900px) {
        .zona-showcase {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .big-logo {
            max-width: 240px;
        }
    }

    /* =========================
    ZONA VIDEOS SECTION 
    ========================= */

    .zona-videos {
        background-color: #000;
        padding: 0px 0px;
        color: #fff;
    }

    .video-container {
        display: flex;
        justify-content: flex-start;
        gap: 25px;
        flex-wrap: wrap;
    }

    .video-card {
        flex: 0 0 calc((100% - 50px) / 3);

        height: 287px;

        border-radius: 12px;
        overflow: hidden;
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;

        position: relative;

    }

    img {
        -webkit-user-drag: none;
        user-select: none;
        pointer-events: none;
    }

    .card-video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: fill;
        background: black;
    }

    /* =========================
        VIDEOS SECTION 
    ========================= */
    .video-section {
        position: relative;
        height: 80vh;
        overflow: hidden;
        clip-path: inset(0 0 0 0);
    }

    .video-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        pointer-events: none;
    }

    #bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.55) 0%,
                rgba(0, 0, 0, 0) 30%,
                rgba(0, 0, 0, 0) 70%,
                rgba(0, 0, 0, 0.65) 100%);
        z-index: 2;
        pointer-events: none;
    }

    .video-controls {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10;
        display: flex;
        gap: 10px;
        pointer-events: auto;
    }

    .video-controls button {
        width: 45px;
        height: 45px;
        border: none;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.55);
        color: white;
        cursor: pointer;
        transition: 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .video-controls button:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    /*LOOP IMAGES*/

    .wrapper {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        overflow: hidden;
    }

    .wrapper::before,
    .wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        width: 500px;
        height: 100%;
        z-index: 10;
    }

    .wrapper::before {
        left: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 25), transparent);
    }

    .wrapper::after {
        right: 0;
        background: linear-gradient(to left, rgba(0, 0, 0, 25), transparent);
    }

    @media (max-width: 1000px) {



        .h1-mt {
            margin-top: 3vh;
            margin-bottom: 5vh;
        }

        #bg-video {
            object-fit: contain;
        }

        .video-wrapper {
            position: absolute;
            inset: 0;
        }

        .video-section {
            height: 46vh;
        }
    }



    .row {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        gap: 20px;
        animation: scroll 100s linear infinite;
    }

    .row.reverse {
        animation-direction: reverse;
    }

    .card img {
        height: 225px;
        object-fit: fill;
        display: block;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .fade-top {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        z-index: 10;
        background: linear-gradient(to bottom, #0b0b0b, transparent);
    }

    .fade-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        z-index: 10;
        background: linear-gradient(to top, #0b0b0b, transparent);
    }


    /*before footer*/
    .before-footer {
        height: 500px;
        position: relative;
        background-image: url("Photos/lotlogos.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .before-footer::before {
        content: "";
        position: absolute;
        inset: 0;

        background: rgba(0, 0, 0, 0.60);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(3px);
    }

    .before-footer::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;

        background: radial-gradient(circle,
                rgba(0, 0, 0, 0) 40%,
                rgba(0, 0, 0, 0.6) 100%);
    }

    .before-footer>div {
        position: absolute;
        inset: 0;
    }

    .before-footer>div::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px;

        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.9),
                rgba(0, 0, 0, 0));
    }

    .before-footer>div::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;

        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.9),
                rgba(0, 0, 0, 0));
    }

    .centered-div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .centered-div img {
        max-width: 135px;
    }

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

    .centered-div img {
        width: 150px;
        height: 150px;
        object-fit: contain;
        transition: opacity 0.6s ease;
        opacity: 1;
    }

    hr {
        border: 0;
        height: 1px;
        background-image: linear-gradient(to right, rgba(187, 186, 186, 0), rgba(174, 172, 172, 0.75), rgba(161, 161, 161, 0));
    }

    /*Footer*/

    .footer {
        background: black;
        padding: 30px 20px;
    }

    footer a {
        color: white;
        text-decoration: none;
        font-size: 17px;
        font-family: Cinema;
    }

    .just-center {
        justify-content: space-between;
        display: flex;
        align-items: center;
        padding-bottom: 20px;
    }

    .footer-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }

    .footer-text {
        max-width: 850px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-text p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 15px;
        line-height: 1.9;
        letter-spacing: 1px;
        font-family: Cinema;
    }


    .text {
        font-family: Helvetica, sans-serif;
        font-weight: 600;
        letter-spacing: -0.025em;
        color: #333;
        font-size: clamp(2rem, 5vw, 4rem);
        line-height: 1.2;
        max-width: 80vw;
        margin: 0 auto;
    }


    /* =========================
    BURGER MENU
    ========================= */

    .burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        pointer-events: auto;
        z-index: 1001;
        background: none;
        border: none;
        padding: 5px;
    }

    .burger span {
        display: block;
        width: 26px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: 0.3s ease;
    }

    .burger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        color: white;
        text-decoration: none;
        font-family: Cinema;
        font-size: 22px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 3px;
        transition: opacity 0.2s;
    }

    .mobile-menu a:hover {
        opacity: 0.6;
    }

    .mobile-menu .mobile-icons {
        display: flex;
        gap: 30px;
        margin-top: 10px;
    }

    .mobile-menu .mobile-icons i {
        font-size: 22px;
    }

    /* =========================
    TABLET + MOBILE (≤768px)
    ========================= */

    @media (max-width: 768px) {

        /* NAV */
        .main-links,
        .icons {
            display: none;
        }


        .video-section {
            height: 35vh;
        }

        .burger {
            display: flex;
            justify-self: start;
        }

        .respo-disp {
            display: none;
        }

        .nav-links {
            grid-template-columns: 1fr 1fr;
        }

        /* SECTION PADDING */
        .section {
            padding-left: 20px;
            padding-right: 20px;
        }

        .h1-mt {
            margin-top: 8vh;
            margin-bottom: 8vh;
        }

        /* TITLE */
        .f-size {
            font-size: 16px;
        }

        /* ZONA SHOWCASE */
        .zona-showcase {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .big-logo {
            max-width: 200px;
        }

        .showcase-right {
            width: 100%;
            align-items: center;
        }

        .media-card {
            width: 100%;
            max-width: 100%;
            height: 200px;
        }

        /* GALLERY SCROLL */
        .card img {
            height: 180px;
        }

        /* BEFORE FOOTER */
        .before-footer {
            height: 350px;
            background-attachment: scroll;
        }

        /* FOOTER */
        .just-center {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }

        .footer-text p {
            font-size: 13px;
        }

        .flex-box {
            width: 100%;
            max-width: 320px;
            margin: 270px auto;
            margin-top: 40px;
            gap: 12px;

            grid-template-columns: repeat(2, 1fr);
            height: auto;
        }

        .flex-box img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 6px;
        }

        .wrapper::before {
            left: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0), transparent) !important;
        }

        .wrapper::after {
            right: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0), transparent) !important;
        }

        h1 {
            font-size: 25px;
        }
    }

    /* =========================
    SMALL MOBILE (≤480px)
    ========================= */

    @media (max-width: 480px) {

        .video-section {
            height: 26vh;
        }

        h1 {
            font-size: 18px;
        }

        .media-card {
            height: 180px;
        }

        .card img {
            height: 140px;
        }

        .centered-div img {
            width: 100px;
            height: 100px;
        }

        .before-footer {
            height: 280px;
        }

        .row {
            gap: 10px;
            animation: scroll 40s linear infinite;
        }
    }

    a {
        color: white;
    }