@font-face {
  font-family: 'Shurjo';
  src: url('fonts/ShurjoWeb_400.woff2') format('woff2'),
       url('fonts/ShurjoWeb_400.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


:root {
    
    --primary-color: #BB1119;
    --primary-font: 'Shurjo', sans-serif;

}

html,
body {
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Shurjo', sans-serif;
}

.title-font {
    font-family: var(--primary-font);
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color);
}

.container {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 1328px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* Swiper Slider Base */
.swiper {
    width: 100%;
}

.bannerSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    /* Matches Tailwind's rounded-lg */
    overflow: hidden;
}

.bannerSwiper .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Custom Navigation Arrows */
.banner-next,
.banner-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.6rem;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-next {
    right: 15px;
}

.banner-prev {
    left: 15px;
}

/* Custom Pagination */
.swiper-pagination {
    position: absolute;
    bottom: 15px !important;
    left: 50% !important;
    transform: translateX(-50%);
    min-width: 100px;
    padding: 10px 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    border-radius: 4px;
    /* Slight rounding for a modern square look */
    width: 10px;
    height: 10px;
    background: #e5e7eb;
    /* Light gray base */
    opacity: 0.9;
    transition: all 0.3s ease;
    margin: 0 4px !important;
}

.swiper-pagination-bullet-active {
    background-color: #14b8a6;
    /* Teal color */
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
    opacity: 1;
    z-index: 1;
}

/* Nice Animation for the Mobile Toggle */
#mobile-menu.menu-open {
    max-height: 600px;
    opacity: 1;
}

/* headline part */

@keyframes ticker-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .animate-ticker {
        display: inline-flex;
        white-space: nowrap;
        animation: ticker-scroll 35s linear infinite;
    }
    .animate-ticker:hover {
        animation-play-state: paused;
    }