
body {
    font-family: 'Futura', sans-serif;
    margin: 0;
    background-color: #FFFFFF;
    color: #666666;
}


/* ----- Alapértelmezett Header Stílus (Asztali nézet) ----- */
/* Fejléc (Főmenü) – mindig látható marad, de a tartalom alácsúszik */

/* Felső menüsáv – Mindig látható, teljes szélességben */
header {
    background-color: #FFFFFF !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 20px !important; /* A széleken ne legyen extra hely */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
    position: sticky !important; /* Fixen maradjon a képernyő tetején */
    top: 0 !important;
    left: 0 !important;
    z-index: 1100 !important;
    
}

/* Mobil és kisebb képernyős optimalizálás */
@media screen and (max-width: 900px) {
    header {
        padding: 8px 0 !important;
    }

    .menu {
        gap: 10px !important;
        padding: 0 15px !important;
    }

    .menu a {
        font-size: 2vw !important;
        padding: 5px 10px !important;
    }

    .logo img {
        max-width: 120px !important;
    }
}

@media screen and (max-width: 600px) {
    .menu {
        flex-direction: column !important;
        align-items: center !important;
        padding: 10px 0 !important;
    }

    .menu a {
        font-size: 3vw !important;
        padding: 4px 8px !important;
    }

    .logo img {
        max-width: 100px !important;
    }
}


/* Logó */
.logo img {
    max-width: 170px; /* Logó maximális szélessége */
    height: auto;
    display: block;
    margin-left: 30px !important; /* Move the logo further in */
    transition: all 0.3s ease-in-out;
}

/* Menü és linkek */
nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.menu {
    list-style: none;
    display: flex;
    gap: 1vw; /* Reszponzív távolság */
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    color: #666666;
    padding: 6px 6px;
    font-size: 1.4vw;
    transition: all 0.3s ease;
}

.menu li a:hover,
.menu li a:focus {
    background-color: #ED1C24;
    color: #FFFFFF;
    border-radius: 5px;
}

/* ----- Dropdown Menü ----- */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ED1C24;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

.dropdown-menu li {
    padding: 5px 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.dropdown-menu li a {
    color: #FFFFFF;
    display: block;
    font-size: 1.3vw;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #666666;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ----- Reszponzív Mód – Menü Automatikus Kicsinyítése ----- */
@media screen and (max-width: 1200px) {
    .menu a {
        font-size: 1.5vw; /* Betűméret csökkentése kisebb kijelzőknél */
        padding: 6px 12px;
    }

    .logo img {
        max-width: 140px;
    }
}

/* Hide the mobile menu by default */
.mobile-menu {
    display: none;
}

/* Hide the normal menu by default */
.menu {
    display: flex;
}

/* Hide the mobile menu by default */
.mobile-menu {
    display: none;
}

/* Show the mobile menu and hide the normal menu on screens smaller than 900px */
@media screen and (max-width: 900px) {
    .menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

/* Show the mobile menu on screens smaller than 900px */
@media screen and (max-width: 900px) {
    .mobile-menu {
        display: block;
    }

    .mobile-menu-button {
        background-color: #ED1C24;
        color: #FFFFFF;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        font-size: 1rem;
        border-radius: 5px;
    }

    .mobile-dropdown-menu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #FFFFFF;
        border: 1px solid #ccc;
        border-radius: 5px;
        position: absolute;
        width: 100%;
        top: 50px;
        left: 0;
        z-index: 1000;
    }

    .mobile-dropdown-menu li {
        border-bottom: 1px solid #ccc;
    }

    .mobile-dropdown-menu li a {
        display: block;
        padding: 10px 20px;
        color: #666666;
        text-decoration: none;
    }

    .mobile-dropdown-menu li a:hover {
        background-color: #ED1C24;
        color: #FFFFFF;
    }
}

/* Show the dropdown menu when the button is clicked */
.mobile-menu-button.active + .mobile-dropdown-menu {
    display: block;
}


.slideshow-container {
    position: relative;
    max-width: 100%;
    height: 70vh; /* Adjust the height as needed */
    margin: auto;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Smooth transition */
}

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

.active {
    opacity: 1;
}



.slideshow-button {
    position: absolute;
    bottom: 10%; /* Az alsó részhez igazítva (10%-kal feljebb a legaljától) */
    width: 100%;
    display: flex;
    justify-content: center; /* Középre igazítás */
    z-index: 1; /* A gomb mindig a képek fölött legyen */
}

.slideshow-button button {
    background-color: #ED1C24;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Enyhe árnyék */
}

.slideshow-button button:hover {
    transform: scale(1.1); /* Enyhén nagyítva hover esetén */
    background-color: #C71A20; /* Sötétebb piros szín */
}


.card {
    width: calc(33.33% - 60px); /* 3 kártya egy sorban (-20px a gap miatt) */
    height: 200px; /* Állandó magasság */
    background-color: #f4f4f4;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    border-radius: 1px !important;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.card img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 1px !important;
    object-fit: cover;
    
}

@media (max-width: 768px) {
    .card {
        width: calc(50% - 20px); /* 2 kártya egy sorban kisebb képernyőn */
    }
}

@media (max-width: 480px) {
    .card {
        width: 100%; /* 1 kártya egy sorban a legkisebb képernyőn */
    }
}

.card img {
    width: 100%; /* A kép teljes szélességben kitölti a kártyát */
    height: 100%; /* A kép teljes magasságban kitölti a kártyát */
    object-fit: cover; /* A kép arányosan kitölti a teret */
    border-radius: 1px !important;
}

.card:hover {
    transform: scale(1.05); /* Nagyítás hover esetén */
}
h2 {
    margin-top: 40px; /* Alapértelmezett távolság minden h2 elem fölött */
}

.why-us h2 {
    text-align: center;
    color: #ED1C24;
    margin-top: 60px; /* 50px távolság a cím fölött */
    margin-bottom: 60px; /* Távolság a cím alatt */
}


.why-us {
    margin-bottom: 60px; /* Extra távolság az alatta lévő szekció előtt */
}


.hero .overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

button {
    background-color: #ED1C24;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

button:hover {
    transform: scale(1.1);
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
.modal img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    z-index: 2001;
}
.modal-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 2002;
}
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 2002;
}
.prev {
    left: 20px;
}
.next {
    right: 20px;
}




footer {
    background-color: #666666;
    color: #FFFFFF;
    padding: 0px 0px;
    text-align: left;
}
footer {
    background-color: #666666;
    color: #ffffff;
    padding: 0px 0;
}
.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}
.footer-column a img {
    width: 50px;  /* Kisebb méret, változtathatod 20px vagy 40px-re is */
    height: auto; /* Arányos méret */
    margin: 5px;  /* Kis térköz az ikonok között */
}

.footer-column h3 {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 5px;
}
.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
}
.footer-column ul li a:hover {
    text-decoration: underline;
}
.footer-column form {
    display: flex;
    flex-direction: column;
}
.footer-column input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}
.footer-column button {
    padding: 10px;
    background-color: #ffffff;
    color: #666666;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.footer-column button:hover {
    background-color: #cccccc;
}
.footer-bottom {
    background-color: #555555;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    margin-top: 10px;
}
.footer-bottom ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 10px 0 0 0;
}
.footer-bottom ul li {
    margin: 0 15px;
}
.footer-bottom ul li a {
    color: #ffffff;
    text-decoration: none;
}
.footer-bottom ul li a:hover {
    text-decoration: underline;
}


/* Konténer beállítása */
.contact-image-container {
    position: relative; /* Lehetővé teszi az ikonok pontos elhelyezését */
    width: 100%;
    max-width: 1400px; /* Ne legyen túl széles */
    margin: 0 auto;
    overflow: hidden;
}

/* Háttérkép beállítása */
.contact-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Kitölti a rendelkezésre álló helyet torzítás nélkül */
}

/* Social ikonok pozicionálása a kép alsó közepére */
.social-icons {
    position: absolute;
    bottom: 5%; /* A kép alsó 10%-ában helyezkedjen el */
    left: 50%;
    transform: translateX(-50%); /* Középre igazítja az ikonokat */
    display: flex;
    gap: 40px; /* Távolság az ikonok között */
}

/* Ikonok arányos méretezése */
.social-icons img {
    width: 8vw; /* Az ablak szélességének 8%-át foglalja el */
    max-width: 80px; /* Nagy képernyőkön max 80px */
    height: auto;
    transition: transform 0.3s ease, width 0.3s ease; /* Simább animáció */
}

/* Ha ráviszed az egeret, kicsit nagyobb lesz */
.social-icons img:hover {
    transform: scale(1.1);
}

/* Mobilbarát ikonok */
@media (max-width: 768px) {
    .social-icons {
        bottom: 5%; /* Mobilon kicsit lentebb tolva */
    }

    .social-icons img {
        width: 12vw; /* Mobilon az ablak szélességének 12%-a */
        max-width: 50px; /* Maximum 50px, hogy ne legyen túl nagy */
    }
}


.counter-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: url("images/counter.webp"); /* Cseréld ki a háttérképedre */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    color: white;
    text-align: center;
}

.counter-item {
    flex: 1;
    font-size: 40px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Árnyékolás */
}

.counter-item p {
    font-size: 20px;
    margin-top: 10px;
    font-weight: normal;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.download-section {
     background-image: url("images/dokumente-banner.webp"); /* Cseréld ki a saját képedre */
background-size: cover; /* Kitölti a teljes szekciót */
    background-position: center; /* Középre igazítja a képet */
    background-repeat: no-repeat; /* Nem ismétlődik */
    padding: 10px;
    
    max-width: 100%;
    text-align: left;
    justify-content: flex-start; /* Szöveg bal oldalra kerül */
    padding-left: 5%;
margin-bottom: 400px; 
}


.download-section h2 {
    color: black;
    margin-bottom: 15px;
}

.download-section ul {
    list-style: none;
    padding: 0;
}

.download-section li {
    margin: 10px 0;
}

.download-section a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.download-section a:hover {
    color: #ed1c24;
    background: white;
}

.hero-image {
    width: 100%;
    height: 300px; /* Állítsd be a kívánt magasságot */
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* A kép teljesen kitölti a területet torzítás nélkül */
}

.footer-bottom {
    display: flex;
    justify-content: space-between; /* A két oldalra osztás */
    align-items: center;
    padding: 0px 0px;
    background-color: #323232;
    color: white;
    font-size: 14px;
}

.footer-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.footer-left li {
    display: inline;
}

.footer-left a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.footer-left a:hover {
    color: #ddd;
}

.footer-center {
    text-align: center;
    flex-grow: 1;
}



/* Első kép teljes szélességben */
.full-width-image img {
    width: 100vw; /* Teljes szélesség */
    height: auto;
    display: block;
}

/* A többi kép boxokban */
.wpc-box-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Távolság a képek között */
    align-items: center; /* Középre igazítja a boxokat */
}

/* Alapbeállítás minden boxra */
.image-box {
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Árnyék */
    border-radius: 10px; /* Lekerekített sarkok */
margin-top: 20px;
margin-bottom: 20px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kitölti a boxot torzítás nélkül */
}

/* Egyedi méretek minden egyes boxra */
.box1 {
    width: 98%;
    max-width: 2000px;
    height: 200px;
Margin-top: 30px;
}

.box2 {
    width: 98%;
    max-width: 1500px;
    height: 1350px;
}

.box3 {
    width: 98%;
    max-width: 1500px;
    height: 1650px;
}

/* Első kép teljes szélességben */
.full-width-image img {
    width: 100vw; /* Teljes szélesség */
    height: auto;
    display: block;
}


/* Alu Galéria teljes szélességű box */

.alu-box-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Távolság a képek között */
    align-items: center; /* Középre igazítja a boxokat */
    width: 100%;
    max-width: 1400px; /* Ne legyen túl széles */
    margin: 0 auto;
}

/* Képdobozok beállítása */
.image-box {
    width: 98%; /* A képek arányosan igazodjanak a galéria szélességéhez */
    max-width: 1400px; /* Maximális szélesség */
    height: auto; /* Magasság automatikusan igazodik */
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Árnyék */
    border-radius: 10px; /* Lekerekített sarkok */
}

/* Minden kép alapértelmezett beállítása */
.image-box img {
    width: 100%;
    height: auto; /* Magasság arányosan igazodik, így nem torzul */
    object-fit: contain; /* Megőrzi a teljes kép láthatóságát */
    display: block;
}

/* Center the image grid box */
.image-grid {
    display: flex; /* Use flexbox for centering */
    grid-template-columns: repeat(3, 1fr); /* 3 oszlop minden sorban */
    flex-wrap: wrap; /* Allow wrapping of items */
    justify-content: center !important; /* Horizontally center the items */
    align-items: center !important; /* Vertically center the items */
    gap: 60px; /* Space between the cards */
    padding: 20px; /* Optional padding */
    padding-bottom: 60px;
}


/* Minden egyes kép-box */
.homepage-image-box {
    position: relative;
    width: 100%;
    max-width: 350px; /* Állítsd be a kívánt maximális méretet */
    height: 350px; /* Állítsd be a kívánt magasságot */
    overflow: hidden;
    border-radius: 50px; /* Lekerekített sarkok */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Árnyék */
    cursor: pointer;
}

/* Alapértelmezett kép */
.homepage-image-box .default-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out; /* Áttűnés */
    opacity: 1;
}

/* Második kép alapból rejtve */
.homepage-image-box .hover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    opacity: 0; /* Alapból nem látszik */
}

/* Ha az egér rámegy, a második kép megjelenik */
.homepage-image-box:hover .default-img {
    opacity: 0;
}

.homepage-image-box:hover .hover-img {
    opacity: 1;
}

/* Telefonos kattintás támogatása */
.homepage-image-box.clicked .default-img {
    opacity: 0;
}

.homepage-image-box.clicked .hover-img {
    opacity: 1;
}

/* Tabletekhez (900px-nél kisebb képernyő) */
@media screen and (max-width: 900px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 oszlop tableten */
    }
}

/* Mobilokhoz (600px-nél kisebb képernyő) */
@media screen and (max-width: 600px) {
    .image-grid {
        grid-template-columns: 1fr; /* 1 oszlop mobilon */
    }
}

.hero-video {
    width: 100vw; /* Teljes szélességben legyen */
    height: auto; /* Automatikusan méreteződik */
    display: block; /* Megakadályozza a felesleges margókat */
    object-fit: cover; /* Kitölti a rendelkezésre álló helyet */
    position: relative; /* Megtartja az oldal természetes folyamát */
}



/* Első kép teljes szélességben */
.full-width-image img {
    width: 100vw; /* Teljes szélesség */
    height: auto;
    display: block;
}

/* A többi kép boxokban, mindig teljesen látható */
.kerites-box-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Távolság a képek között */
    align-items: center;
}

/* Alapbeállítás minden boxra */
.image-box {
    width: 98%;
    max-width: 1500px;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.image-box img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Mindig teljesen látható marad */
}

/* Reszponzív beállítások – Tablet és Mobil */
@media screen and (max-width: 1200px) {
    .full-width-image {
        height: 50vh; /* Kisebb képernyőn alacsonyabb */
    }
}

@media screen and (max-width: 900px) {
    .full-width-image {
        height: 40vh;
    }

    .image-box {
        width: 95%; /* Mobilon nagyobb szélesség */
    }
}

@media screen and (max-width: 600px) {
    .full-width-image {
        height: 35vh;
    }
}


/* Az utolsó kép doboza */
.kerites-box3 {
    position: relative;
    width: 98%;
    max-width: 1500px;
    height: auto;
    overflow: hidden;
}



.angebote-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.angebote-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
    .logo img {
        max-width: 100px;
    }

    .angebote-image-container img {
        width: 100%;
        height: auto;
    }
}


.impressum-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.impressum-title h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #444;
}

.impressum-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.impressum-section h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #222;
}

.impressum-section p {
    margin: 5px 0;
}

.impressum-section a {
    color: #007BFF;
    text-decoration: none;
}

.impressum-section a:hover {
    text-decoration: underline;
}

/* ✅ Első kép teljes szélességben */
.e-full-width-image img {
    width: 100%; /* Teljes szélesség */
    height: auto;
    display: block;
}

/* ✅ A többi kép boxokban */
.edel-box-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Távolság a képek között */
    align-items: center; /* Középre igazítja a boxokat */
    width: 100%;
    max-width: 1400px; /* Ne legyen túl széles */
    margin: 0 auto;
}

/* ✅ Alapbeállítás minden boxra */
.e-image-box {
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Árnyék */
    border-radius: 10px; /* Lekerekített sarkok */
    margin-top: 20px;
    margin-bottom: 20px;
}

.e-image-box img {
    width: 100%;
    height: auto; /* Ensure height is auto to maintain aspect ratio */
    object-fit: cover; /* Kitölti a boxot torzítás nélkül */
}

/* ✅ Egyedi méretek minden egyes boxra */
.box1 {
    width: 98%;
    max-width: 1500px;
    height: auto; /* Ensure height is auto to maintain aspect ratio */
    margin-top: 30px;
}

.box2 {
    width: 98%;
    max-width: 1500px;
    height: auto; /* Ensure height is auto to maintain aspect ratio */
}

.box3 {
    width: 98%;
    max-width: 1500px;
    height: auto; /* Ensure height is auto to maintain aspect ratio */
}

/* ✅ Reszponzív beállítások */
@media screen and (max-width: 768px) {
    .edel-box-gallery {
        flex-direction: column;
    }
    .e-image-box {
        width: 100%;
        height: auto; /* Magasságot automatikusan igazítja */
    }
}

/* Full-width image */
.full-width-image {
    width: 100%;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: auto;
}

/* Box gallery */
.blumen-box-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.image-box {
    flex: 1 1 45%;
    margin: 10px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-box {
        flex: 1 1 100%;
    }
}

/* Sliding card container */
.sliding-card-container {
    display: -webkit-box; /* Fallback for older Safari */
    display: -webkit-flex; /* For Safari */
    display: flex;
    justify-content: center; /* Center the cards horizontally */
    align-items: center; /* Center the cards vertically (if needed) */
    gap: 40px; /* Space between cards */
    padding: 80px;
    width: 100%; /* Ensure the container spans the full width */
    box-sizing: border-box; /* Include padding in width calculation */
}

.sliding-card-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

.sliding-card {
    flex: 0 0 auto;
    width: 210px;
    height: 400px;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.sliding-card:hover {
    transform: scale(1.1);
    animation: pulse 1s infinite;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.1);
    }
}