/* Track */
::-webkit-scrollbar {
    width: 8px;
}

/* Track - background */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Thumb */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

/* Thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
    /*overflow-x: hidden;*/
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.animate-fade-in {
    animation: fade-in 0.5s ease-in-out;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dark {
    background-color: #1f2937 !important;
    color: #fff;
}

/* Add some custom styles for the swiper container */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper {
    width: 600px;
    height: 300px;
}

.product-card {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-card .image-container {
    position: relative;
    overflow: hidden;
    height: 70%;
    width: 70%;
}

.product-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card .image-container:hover img {
    transform: scale(1.1);
}

.product-card .content {
    flex: 1;
    padding: 2rem;
    text-align: center;
}

.product-card h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-card p {
    margin-bottom: 1.5rem;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-card .reviews {
    font-size: 1.2rem;
    color: #888;
}

.product-card .reviews i {
    margin-right: 0.3rem;
}

.map {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.map svg {
    width: 100%;
    height: 100%;
}

.map-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.animated-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    padding: 10px;
}

.pulsate {
    animation: pulsate 10s ease-in-out infinite;
}

.dark .animated-svg {
    color: #ffffff; /* Set the color for the dark theme */
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
