/* Global/Base Styles */
a {
    text-decoration: none !important;
}

.menu-item {
    font-size: 1.25rem;
}

.padding-left-right {
    padding: 0px 50px;
}

/* Tag Line Component */
.tag-line {
    padding: 20px;
    background-color: rgb(233, 178, 39);
}

.tag-line h3 {
    font-weight: 600;
    font-size: 1.7rem;
}

/* Carousel/Swiper Component */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}

.swiper-container {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    width: 100% !important;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.swiper-slide img {
    /* border-radius: 50%; */
    width: 150px;
    height: 150px;
}

.swiper-slide p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* Swiper Navigation arrows styling */
.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

/* Slider/YouTube Component */
.slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    justify-content: start;
}

.slide {
    display: flex;
    justify-content: center;
    min-width: 25%;
    position: relative;
}

.youtube-container {
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

iframe {
    height: 450px;
}

.slider-yt {
    background: linear-gradient(to right, #dc2626, #a21818);
    padding-top: 5%; /* Base padding */
}

.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.overlay h2 {
    margin: 0;
    font-size: 24px;
}

.overlay p {
    margin: 0;
    font-size: 16px;
}

/* Pagination/Buttons Component */
.pagination {
    position: relative;
    width: 100%;
    height: 60px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 20px;
}

button.prev,
button.next {
    position: absolute;
    /* top: 50%; */
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

button.prev {
    margin-left: -100px;
}
.franchise-container{
  padding: 0% 6%;
}

button:disabled {
    background-color: #eee;
    cursor: not-allowed;
}

/* Franchise Component */
.franchise-title {
    font-size: 2.2rem;
}

.franchise-gradient {
    background: linear-gradient(to right, #b72222, #f94b16);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.franchise-subtitle {
    color: #1f2937;
}

.franchise-tagline {
    font-size: 1.5rem;
}

.franchise-description {
    max-width: 800px;
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
}

.franchise-card {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.franchise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.franchise-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.franchise-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f6be19;
    margin-top: 8px;
}
.team-img img{
    min-height: 350px;
}

/* Responsive Styles */

/* Mobile-specific overrides (max-width: 480px) */
@media (max-width: 480px) {
    .vc_column_container {
        width: 100% !important;
    }
    .team-img img{
        min-height: 270px;
    }

    .header_mobile .menu_button {
        left: auto;
        right: 20px;
    }

    .copyRight {
        width: 100%;
    }

    .designBy {
        width: 100%;
    }

    .vc_column_container>.vc_column-inner {
        width: 100% !important;
    }

    .vc_row.wpb_row.vc_row-fluid {
        width: 100%;
    }

    .news-description {
        text-align: center;
    }

    .column-1_3 {
        padding: 10px !important;
    }

    .content_wrap {
        width: 100%;
    }

    /* Slider/YouTube Component overrides for mobile */
    .slider-yt {
        padding-top: 20%;
        padding-left: 5%;
    }

    .franchise-container {
        padding: 0% 0%;
        padding-left: 10%;
    }

    .franchise-container P {
        text-align: justify;
    }
}

/* Tablet/Desktop (min-width: 768px) */
@media (min-width: 768px) {
    .franchise-title {
        font-size: 3rem;
    }
}

/* Larger Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .franchise-title {
        font-size: 3.2rem;
    }
}

/* Specific range for top panel (1007px to 1137px) */
@media (max-width: 1137px) and (min-width: 1007px) {
    .top_panel_fixed .top_panel_wrap {
        width: 100% !important;
    }
}