/* Fix for Campus Fests section overflow on mobile */
.fest-content,
.fest-content .swiper,
.fest-content .swiper-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

.fest-content .swiper-slide {
    width: auto;
}

.fest-content {
    width: 100%;
}

.iti {
    width: 100%;
}

.iti input {
    width: 100% !important;
}

/* Gradient left border */
@media (min-width: 1024px) {
    .gradient-left-border {
        position: relative;
    }

    .gradient-left-border::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #A42485, #ED1C24);
    }
}

/* Overlay pseudo‑element for the background container */
.bg-cover.bg-center {
    position: relative;
}

.bg-cover.bg-center::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 1024px) {
    .bg-cover.bg-center::before {
        background-color: transparent;
    }
}

/* Mobile alignment fix for industrySwiper */
@media (max-width: 639px) {
    .industrySwiper .swiper-slide {
        display: flex;
        justify-content: flex-start;
    }

    .industrySwiper .group {
        width: 100%;
    }
}

.gradient-text {
    background: linear-gradient(68.92deg, #00A5E2 -43.92%, #0078BF -10.03%, #7C2C91 19.2%, #9C258F 42.45%, #ED1C24 65.71%, #ED1C24 94.27%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Make slides fixed width */
.symposiumSwiper .swiper-slide,
.musaSwiper .swiper-slide,
.expoSwiper .swiper-slide,
.pharmacySwiper .swiper-slide,
.sportsSwiper .swiper-slide {
    width: 380px !important;
    /* adjust if needed */
}

/* Allow slider to overflow */
/* allow overflow only for fest sliders */
.fest-content .swiper {
    overflow: visible;
}

/* keep desktop course slider contained */
.desktopCourseSwiper {
    width: 1072px;
    margin: auto;
    overflow: hidden;
}

.desktopCourseSwiper .swiper-wrapper {
    align-items: stretch;
}

.desktopCourseSwiper .swiper-slide {
    width: 250px !important;
}

/* Mobile Bottom Fixed Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.mobile-bottom-bar .btn {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

/* Left Button */
.counsellor-btn {
    background-color: #0b1d3a;
    /* dark blue */
}

/* Right Button */
.apply-btn {
    background-color: #d60000;
    /* red */
}

/* Show only on mobile */
@media (min-width: 768px) {
    .mobile-bottom-bar {
        display: none;
    }
}

@media (max-width: 768px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}
/* Hide arrows everywhere */
.heroBannerSwiper .swiper-button-prev,
.heroBannerSwiper .swiper-button-next {
  display: none !important;
}

/* Hide dots on mobile only */
@media (max-width: 768px) {
  .heroBannerSwiper .swiper-pagination {
    display: none !important;
  }
}