:root{
    --primary-color: #e81c28;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-size: 1.25rem;
}


@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.cloudy-text {
  color: transparent;
  background: linear-gradient(to bottom, rgba(8, 95, 187, 0.63), rgb(255, 255, 255));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
  opacity: 1;
}


@media only screen and (max-width: 990px) {
    .home-sections{
        margin-top: 50px;
        padding-top: 20px;
    }
    .cloudy-text {
        font-size: 60px !important;
        top: -50px !important;

    }
    .header-text{
        padding: 0 20px;
        top: 80px !important;
        font-size: 14px;

    }

    .header-description{
        padding-top: 20px !important;
    }
    .service-item{
        flex-basis: 100% !important;
    }
}


.institution-card {
        border:2px solid var(--mainColor) !important;
        .university-image{
          height: 100%;
          object-fit: cover;
        }
        .overlay{
          position: absolute;
          top: 0;
          width: 100%;
          height: 100%;
          opacity: 0;
          transition: 0.4s ease-in-out opacity;
          background-color: black;
        }

  .transition {
    transition: all 0.3s ease-in-out;
  }
}



@media (min-width: 992px) {
    .translate-top {
        position: absolute;
        transform: translateY(-80px);
    }
    .translate-bottom {
        transform: translateY(10px);

    }
    .institution-card:hover .overlay {
        opacity: 0.6;
    }

    .institution-card:hover .translate-top  {
        transform: translateY(10px);
    }
    .institution-card:hover .translate-bottom  {
        transform: translateY(-170px);

    }
    /*.institution-card:hover .translate-bottom-blog-card  {*/
    /*    transform: translateY(-90px);*/
    /*}*/
}
.translate-bottom-blog-card{
    top:20px

}
.blog-card-hover{
    overflow: hidden !important;
    border-radius: 15px !important;
    .transition {
        transition: all 0.5s ease-in-out;
    }
    .translate-bottom-blog-card{
        margin-left:50px ;
        position:absolute;
        top:75%;
        opacity: 0;
        z-index: -10;
        height: 80px !important;
        visibility: hidden;
    }
}
.blog-card-hover:hover{
    overflow: visible !important;


}
.blog-card-hover:hover .translate-bottom-blog-card{
    transform: translateY(-10px);
    top:60%;
    opacity: 1;
    visibility: visible;
    z-index: 1;

 }
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.service-item {
    flex-basis: 24%;
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: fit-content;
    transition: color 0.3s ease;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;

}
.service-icon img{
    width: 100%;
}
.service-title {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    transition: color 0.3s ease;
}

.service-item:hover .service-title {
    color: var(--hover-color);
}

.service-item:hover .service-icon i {
    color: var(--hover-color);
}

.mentors-bg {
    background: url('../images/bestInstitution/mentorsbg-new-home-page.png') fixed ;
    background-position: center;
    background-size: cover;
    height:85vh;
}


@media (max-width: 900px) {
    .mentors-heading-content {
        top: -30px !important;
    }

}

.mentors-overlay {
    background-color: rgb(11 11 11 / 70%);
    width: 100%;

    height: 100%;

    .owl-carousel{
        margin-top: -50px;
    }
}

.mentors-heading-faded {
    font-size: 60px;
    font-weight: 800;
    color: white;
    opacity: 0.3;
    text-align: center;
    pointer-events: none;
    user-select: none;
}

@media (min-width: 768px) {
    .mentors-heading-faded {
        font-size: 100px;
    }
}
@media (min-width: 992px) {
    .mentors-heading-faded {
        font-size: 140px;
    }
}

.mentors-heading-content {
    position: relative;
    top: -10rem;
}

@media (min-width: 768px) {
    .mentors-heading-content {
        top: -4rem;
    }

}

@media (min-width: 992px) {
    .mentors-heading-content {
        top: -6rem;
    }
}

@media (max-width: 756px) {
    .mentors-overlay {
        height: 100%;
        .owl-carousel {
            margin-top: 0px !important;
            img{
                height: 300px;
            }
        }
    }
    .mentors-bg{
        height: 80vh !important;
    }
    .translate-top {
        position: absolute;
        top: 0;
    }
    .translate-bottom {
        background: var(--mainColor) !important;
        bottom: 0;
        margin-top: 20px;

    }
}
.border-theme-color{
    border: 2px solid var(--mainColor)
}

.border-theme-color:hover{
    border: 2px solid #C02826;
}

.border-logo-color{
    border: 0.5px solid #C02826;
}

.logo-red-color{
    color: #C02826;
}
.z-20 {
    z-index: 20;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.blog-card img {
    width: 100%;
    height: 100%;
}

.blog-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease-in-out;
}

.blog-card:hover .blog-icon {
    opacity: 1;
    transform: translateY(0);
}

.blog-icon {
    font-size: 2.5rem;
    margin-left: 1rem;
    color: #f1f1f1;
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.3s ease;
}

.hover-zoom {
    position: relative;
    height: 350px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.hover-zoom img {
    transition: transform 0.5s ease-in-out;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

.hover-zoom:hover img {
    transform: scale(1.1);
}


.bg-blue-overlay {
    background-color: rgba(13, 82, 160, 0.9);
    height: 350px;
    position: relative;
    border-radius: 0.5rem;
}

.bg-image-cover {
    background-image: url('../images/bestInstitution/expertSection/expert12.png');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0.5rem;
}

.icon-list li i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.gray-box {
    background-color: #6b7280;
    border-radius: 0.5rem;
}
.banner-height {
    height: 450px;

}

@media (max-width: 1360px) {
    .banner-height {
        height: 300px;
        .display-4 {
            font-size: 2rem;
            font-weight: 500;
            line-height: 1.2;
        }
    }
}
@media (max-width: 1024px) {
    .banner-height {
        height: 300px;
    }
    .bottom-space-banner-text{
        margin-top: auto;
        margin-bottom: auto;
    }
}

.bottom-space-banner-text{
    margin-bottom: 5%;
}

@media (max-width: 768px) {
    .banner-height {
        height: 400px;
    }
    .bottom-space-banner-text{
        margin-top: auto;
        margin-bottom: auto;
    }
}
@media (max-width: 480px) {
    .banner-height {
        height: 450px;
    }
    .bottom-space-banner-text{
        margin-top: auto;
        margin-bottom: auto;
    }
}
.custom-search-wrapper {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 480px) {
    .custom-search-wrapper {
        width: 90%;
    }
}

@media (min-width: 576px) {
    .custom-search-wrapper {
        width: 85%;
    }
}

@media (min-width: 768px) {
    .custom-search-wrapper {
        width: 70%;
    }
}

@media (min-width: 992px) {
    .custom-search-wrapper {
        width: 55%;
    }
}

@media (min-width: 1200px) {
    .custom-search-wrapper {
        width: 40%;
    }
}

@media (min-width: 1400px) {
    .custom-search-wrapper {
        width: 22%;
    }
}

.search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1.25rem;
    border-radius: 3rem;
    font-size: 0.9rem;
    font-family: monospace;
    border: 2px solid var(--mainColor);
    box-shadow: 0 0 8px rgb(232 28 40 / 60%);
    outline: none;
    background-color: white;
}

@media (min-width: 768px) {
    .search-input {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .search-input {
        font-size: 1.05rem;
    }
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mainColor);
    font-size: 1.2rem;
    pointer-events: none;
}


.form-control::placeholder{font-size:0.9rem; color:#eee;}
.form-control::-webkit-placeholder{font-size:0.9rem; color:#eee;}
.form-control::-moz-placeholder{font-size:0.9rem; color:#eee;}

#apply-now-ug input::placeholder{font-size:0.95rem; color:#b2b2b2;}
#apply-now-ug input::-webkit-placeholder{font-size:0.95rem; color:#b2b2b2;}
#apply-now-ug input::-moz-placeholder{font-size:0.95rem; color:#b2b2b2;}


.search-input.animate-placeholder::placeholder {
    color: var(--mainColor);
    font-weight: 900;
    opacity: 1;
    animation: placeholderTypewriter 2.5s steps(40, end) 0.2s 1 normal both !important;
}

.search-input.animate-placeholder::-webkit-input-placeholder {
    color: var(--mainColor);
    opacity: 1;
    animation: placeholderTypewriter 2.5s steps(40, end) 0.2s 1 normal both !important;
}

.search-input.animate-placeholder::-moz-placeholder {
    color: var(--mainColor);
    opacity: 1;
    animation: placeholderTypewriter 2.5s steps(40, end) 0.2s 1 normal both !important;
}

.search-input.animate-placeholder:-ms-input-placeholder {
    color: var(--mainColor);
    opacity: 1;
    animation: placeholderTypewriter 2.5s steps(40, end) 0.2s 1 normal both !important;
}

.newHomePageSearchSuggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin: 0;
    z-index: 1050;
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
    background: white;

}

.suggestions-class {
    padding: 0.5rem 1rem;
    border: 1px solid var(--mainColor);
    border-radius: 0.5rem;
    margin-bottom: 0.3rem;
    cursor: pointer;
    background-color: #f8f9fa;
    color: var(--mainColor);
    margin-top: 10px;
    font-size: 0.9rem;
}

.suggestions-class:hover {
    background-color: #e2e6ea;
}
.expert-icon{
    width: 35px;
    margin-right: 10px;
}

.prof-image {
    max-width: 100%;
    max-height : 250px;
}

.prof-br{
    border-radius: 5px;
}


.expert-icon-loc{
    height: 38px;
}
.gray-box {
    background-color: #e5e8eb;
    border-radius: 0.5rem;
}


.tab-highlight {
    background-color: var(--mainColor);
    color: #fff;
    font-weight: 600;
}

.tab-highlight:hover {
    background-color: var(--mainColor);
}
.nav-dec {
    .nav-pills .nav-link {
        background-color: var(--mainColor);
        color: #ffffff;
        margin: 0 5px;
        transition: all 0.3s ease;
    }

    .nav-pills .nav-link:hover {
        color: #ffffff !important;
    }

    .nav-pills .nav-link.active {
        background-color: #ffffff !important;
        color: var(--mainColor) !important;
        border: 2px solid var(--mainColor);
    }
}
.header-height{
    height: 100px;
}

@media (max-width: 767.98px) {
    .header-height {
        height: 70px;
    }
    .view-more-btn{
        width: 100% !important;
        margin: 0 60px
    }
}
.apply-now-home {
    position: fixed !important;
    top: 50% !important;
    right: 0 !important;
    z-index: 1050 !important;
    rotate: 180deg !important;
    background-color: rgb(197, 40, 42) !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 0 12px 12px 0 !important;
    padding: 10px 0 !important;
    width: 50px !important;
    height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3) !important;
    overflow: visible !important;
}
.vertical-text {
    writing-mode: horizontal-tb;
    text-orientation: upright;
    rotate: 90deg;
    white-space: nowrap;
    font-weight: bold;
}

.apply-now-home:hover {
    background-color: #ffffff;
    color: rgb(197, 40, 42);
    font-weight: bold;
    border: 2px solid rgb(197, 40, 42);
}

.apply-now-home::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 200px;
    border-radius: 12px 12px 12px 12px;
    background-color: rgb(197, 40, 42);
    z-index: -1;
    animation: wavePulse 2s infinite ease-out;
}

@keyframes wavePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
@media (max-width: 766px) {
    /*.apply-now-mobile {*/
    /*    position: fixed !important;*/
    /*    bottom: 20px !important;*/
    /*    left: 24.5% !important;*/
    /*    z-index: 1000 !important;*/
    /*    width: 48% !important;*/
    /*    background-color: rgb(197 40 42) !important;*/
    /*    color: #fff !important;*/
    /*    padding: 2px 20px !important;*/
    /*    border-radius: 15px !important;*/
    /*    cursor: pointer !important;*/
    /*}*/
    #applyNowBtn:hover {
        color: rgb(197 40 42);
        background: #fff;
    }

}


.hover-zoom img {
    transition: transform 0.5s ease-in-out;
    object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}








.uni-vid{
    height: 100%;
}


@media (min-width: 768px) and (max-width: 1366px) {
    .mentors-owl-carousel{
        margin-top: 80px !important;
    }

    .placements-bg {
        height:60vh !important;
    }
    .mentor-section{
        height:100vh !important;
        .mentors-overlay .container .position-relative .mentors-heading-faded{
           margin-top : -60px !important;
        }

    }

}

@media only screen and (width: 1280px) {
    .mentors-owl-carousel{
        margin-top: 80px !important;
    }

    .placements-bg {
        height:70vh;
    }
    .mentor-section{
        height:80vh !important;

    }

}

@media (min-width: 375px) and (max-width: 756px) {

    .mentor-section{
        height:100vh !important;

    }

}

@media (min-width: 768px) and (max-width: 1100px) {
    .placements-bg {
        height:70vh !important;
    }

}

@media (max-width: 992px) {
    .flex-wrap-mob {
        flex-wrap: wrap;
    }
    .placements-bg {
        height:70vh !important;
        .logo-image-adjustments{
            height:40% !important;
        padding:0 20px !important;

        }
    }
}

.placements-bg {
    height:50vh;
}


.placements-overlay {
    .owl-carousel{
        margin-top: -85px;
    }
}

@media (max-width: 756px) {
    .placements-bg {
        height:70vh !important;
    }
        .placements-overlay {
        height: 50vh;
            padding-top: 30px !important;

    }


}

@media (max-width: 992px) {
    .placements-overlay {
        .owl-carousel{
            margin-top: -20px;
        }
    }
}

.course-section{
    .course-grid{
        position: relative;
        .card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            text-align: center;
            position: relative;

            a{
                text-decoration: none;
                padding: 1rem;
                text-align: center;
            }
            h5 {
                font-size: 16px;
                font-weight: 600;
            }

            .course-name {
                font-size: 14px;
                font-weight: 600;
                color: darkred;
                padding-top: 1rem;
                text-align: center;
            ;
            }

            .specializations{
                background: #eee0e0;
                position: absolute;
                color: rgba(28, 71, 119, 0.96);
                padding: 2px 6px;
                width: 90%;
                left: 6%;
                font-size: 12px;
                top: 0;
                border-radius: 5px;
            }
            .compare-now{
                background: var(--mainColor);
                color: #fff;
                position: absolute;
                bottom: -10px;
                left: 10%;
                width: 80%;
                font-size: 10px;
                /*text-align: center;*/
                font-weight: bold;
                border-radius:5px;
                padding: 2px 3px;


            }
        }

    }

    .course-section-icon{
        width: 25%;
        margin-top: 10%;
    }
    .flex-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    @media (min-width: 1024px) {
        .flex-container {
            flex-direction: row;
        }
    }

    .sidebar {
        width: 20%;
        max-height: 500px;
        overflow-y: auto;
        border: 1px solid #e5e7eb;
        border-radius: 0.5rem;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        display: none;
        ul{
            list-style: none;
            margin: auto;
            padding:5px;
        }
    }

    @media (min-width: 1024px) {
        .sidebar {
            display: block;
        }
    }

    .sidebar li {
        margin: 0.25rem 0;
        padding: 0.25rem 0.5rem;
        border-bottom: 1px solid #dee2e6;
        border-radius: 5px;
        cursor: pointer;
        text-align: start;
        font-size: 14px;
    }

    .sidebar li.active {
        background-color: var(--mainColor);
        color: white;
    }

    .sidebar li .badge {
        background-color: #ebf8ff;
        color: var(--mainColor);
        padding: 2px 8px;
        border-radius: 999px;
        font-size: 10px;
        margin-top: 4px;
        display: inline-block;
    }

    .sidebar li i {
        transition: transform 0.2s ease;
    }

    .sidebar li.active i {
        transform: rotate(0deg);
        color: white;
    }

    .sidebar li:not(.active) i {
        transform: rotate(90deg);
        color: var(--mainColor);
    }

    .mobile-scroll {
        display: flex;
        overflow-x: auto;
        gap: 0.75rem;
        padding: 0 0.5rem;
        list-style: none;
    }

    @media (min-width: 1024px) {
        .mobile-scroll {
            display: none;
        }
    }

    .mobile-scroll li {
        flex-shrink: 0;
        font-size: 14px;
        font-weight: 500;
        padding: 0.5rem;
        border-radius: 0.5rem;
        cursor: pointer;
        white-space: nowrap;
    }

    .mobile-scroll li.active {
        background-color: var(--mainColor);
        color: white;
    }

    .mobile-scroll li:not(.active) {
        background-color: #f3f4f6;
        border: 1px solid #e5e7eb;
        color: var(--mainColor);
    }

    .course-container {
        width: 100%;
    }

    @media (min-width: 1024px) {
        .course-container {
            width: 80%;
        }
    }

    .course-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 1rem;
    }

    @media (min-width: 768px) {
        .course-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (min-width: 1166px) {
        .course-grid {
            grid-template-columns: repeat(6, 1fr);
        }
    }

}
.theme-text-color {
    color: #c5282a !important;
}

.thin-scroll::-webkit-scrollbar {
    width: 4px;
    height: 10px !important;
}

.thin-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.thin-scroll::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.thin-scroll::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}

.thin-scroll {
    scrollbar-width: thin;
    scrollbar-color: #fbe9e8 transparent;
}

.list-group-item {
    text-align: start !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    /* border-radius: 4px;*/
    color: #30709f !important;;
    transition: background-color 0.3s, color 0.3s !important;
    margin-bottom: 8px !important;
    border-left: 8px solid #B22222 !important;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.view-more-btn {
    border-radius: 0.5rem;
    width: 10%;
    font-weight: 700;
    background-color: #ffffff;
    color: var(--mainColor);
    border: 2px solid var(--mainColor);
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--mainColor);
    color: white;
}

.custom-dropdown {
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 260px;
}

.custom-dropdown-item {
    margin-bottom: 10px;
    list-style: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #C02826  !important;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    color: #30709f  !important;
}

.dropdown-link {
    display: block;
    padding: 10px 16px;
    background-color: white;
    border-radius: 6px;
    color: #30709f;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.dropdown-link:hover {
    background-color: #f1f1f1;
    text-decoration: none;
}

.dropdown-link.active {
    border-left: 6px solid ;
    font-weight: 700;
    background-color: #f8f9fa;
}

.nav-scroll {
    overflow-y: scroll;
    height: 50vh
}

.ai-badge {
    background: linear-gradient(90deg, #ff5e5e, #ff3d3d);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 2px;
    display: inline-flex;
    align-items: center;
}

.ai-badge i {
    font-size: 10px;
    margin-right: 4px;
}

.suggestion-box {
    background-color: #f0f7ff;
    border-radius: 999px;
    padding: 1px 22px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mainColor);
    display: inline-flex;
    align-items: center;
}

.suggestion-box i {
    margin-right: 4px;
    color: var(--mainColor);
}

.btn-suggest-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 767.98px) {
    .btn-suggest-wrapper {
        flex-direction: column; /* Optional: can be row if you want to change */
        align-items: flex-start; /* Or center, or whatever fits your design */}
}

.header-tab-section{
    width:1000px; height: auto; right: -300%
}
@media (min-width: 768px) and (max-width: 1100px) {

    .header-tab-section{
        width:800px; height: auto; auto; right: -450%;
    }
}
@media (min-width: 1101px) and (max-width: 1280px) {

    .header-tab-section{
        width:1000px; height: auto; auto; right: -450%;
    }
}

.margin-5px{
    margin-top: 5px;
}

@media screen and (width: 1366px) {
    .margin-5px{
        margin-top: 0;
    }
}

#v-pills-tabContent{
    .course-section{
        .course-grid{
            padding: 0;
            .card{
                padding: 0 10px;
                height: 150px;
                p{
                    font-size: 12px;
                }
            }
        }
    }

    .course-link{
        padding: 0;

    }
}

.clamp-text {
    overflow: hidden;
    display: block;
    max-height: 3.6em;
    line-height: 1.8em;
    transition: max-height 0.2s ease-in-out;
    position: relative;
}

.clamp-text.expanded {
    max-height: 500px;
}


.header-text{
    z-index: 2;
    top:170px;
}
.header-description{
    margin-top: -20px;
}
.home-sections{
    padding: 20px 0;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.load-more-btn {
    border-radius: 0.5rem;
    width: 17%;
    font-weight: 700;
    background-color: #ffffff;
    color: var(--mainColor);
    border: 2px solid var(--mainColor);
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: var(--mainColor);
    color: white;
}
.toggleBtn {
    border: none;
    background: transparent;
}
.nested-dropdown-toggle {
    cursor: pointer;
    display: block;
    width: 100%;
}

.fixed-button-container{
    position: fixed;
    z-index: 99;
    width: 100%;
}

/* === Desktop Banners === */
.banner1 {
    background-image: url("../images/new-home-page-banners/banner1.webp");
}
.banner2 {
    background-image: url("../images/new-home-page-banners/banner2.webp");
}
.banner3 {
    background-image: url("../images/new-home-page-banners/banner3.webp");
}
.banner4 {
    background-image: url("../images/new-home-page-banners/banner4.webp");
}
.banner5 {
    background-image: url("../images/new-home-page-banners/PHD.webp");
}
.banner6 {
    background-image: url("../images/new-home-page-banners/DBA.webp");
}

/* === Mobile Versions === */
@media (max-width: 768px) {
    .banner1 {
        background-image: url("../images/new-home-page-banners/banner1-small.webp");
    }
    .banner2 {
        background-image: url("../images/new-home-page-banners/banner2-small.webp");
    }
    .banner3 {
        background-image: url("../images/new-home-page-banners/banner3-small.webp");
    }
    .banner4 {
        background-image: url("../images/new-home-page-banners/banner4-small.webp");
    }
    .banner5 {
        background-image: url("../images/new-home-page-banners/PHD-small.webp");
    }
    .banner6 {
        background-image: url("../images/new-home-page-banners/DBA-small.webp");
    }
}
