.site-notice {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    min-height: 48px;
    padding: 12px 20px;

    background: linear-gradient(90deg, #ed003f, #ff174f);
	color: #FFFFFF;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;

    transition: background 0.3s ease;
    cursor: pointer;
}

.site-notice:hover {
 background: #5C1675;
}

.site-notice strong {
    font-weight: 700;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .site-notice {
        font-size: 14px;
        padding: 10px 15px;
        min-height: 44px;
    }
}

@keyframes ticker {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes scrollNotice {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

.nexgen-site-notice:hover .nexgen-notice-text {
    animation-play-state: paused;
}

/* Pause when mouse is placed over the notice */
.nexgen-site-notice:hover .nexgen-notice-text {
    animation-play-state: paused;
}

/* Mobile settings */
@media only screen and (max-width: 767px) {
    .nexgen-site-notice {
        height: 38px;
    }

    .nexgen-notice-text {
        font-size: 12px;
        animation-duration: 14s;
    }
}
/* Mobile */
@media only screen and (max-width: 767px) {
    .nexgen-site-notice {
        height: 38px;
    }

    .nexgen-notice-track {
        animation-duration: 18s;
    }

    .nexgen-notice-content {
        gap: 12px;
        padding-right: 50px;
        font-size: 12px;
    }

    .nexgen-notice-badge {
        padding: 4px 9px;
        font-size: 9px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .nexgen-notice-track {
        animation: none;
        transform: none;
    }
}


.vs-hero-wrapper4{
    margin-top: 0;
}

.banner-slide4{
   background-image: url(../img/bg/hero-bg-4-1.webp);
}

.table-style1{
    opacity: 0.9;
}

.breadcumb-menu-wrap{
    margin: 30px 0 0 0;
}

.breadcumb-text, .breadcumb-title{
    color:white;
}

.footer-widget .footer-menu ul{
    display: block;
}

.logo-section{
       padding: 50px 0;
}


.logos {
    display: flex;           /* make in one line */
    align-items: center;     /* vertically center */
    justify-content: space-between; /* space between logos */
    flex-wrap: wrap;         /* allow wrapping on smaller screens */
    gap: 30px;               /* spacing between logos */
}

.logos img {
    max-width: 120px;   /* control logo size */
    height: auto;       /* keep aspect ratio */
    flex-shrink: 0;     /* prevent squishing */
}

.subject_title{
    font-size: 16px;
}

.subject-box {
    border: 1px solid #ddd;   /* light border */
    border-radius: 8px;       /* optional rounded corners */
    padding: 15px;
    display: flex;
    flex-direction: column;   /* so button stays at bottom if needed */
    height: 100%;             /* ensures equal height */
    text-align: center;
        justify-content: space-between;
}

.subject-box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product-style1 {
    display: flex;
    flex-direction: column;
}

.product-style1 .product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-style1 .product-content .actions {
    margin-top: auto;
}

/* Course Outcomes Widget */
.course-outcomes-card {
    background-color: var(--white-color);
    border: 3px solid var(--theme-color2);
    padding: 30px;
    margin: 30px 0;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(73, 13, 89, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.course-outcomes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(73, 13, 89, 0.1);
    border-color: var(--theme-color);
}

.course-outcomes-card .outcomes-title {
    font-family: var(--title-font);
    font-size: 22px;
    color: var(--vs-secondary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--smoke-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-outcomes-card .outcomes-title i {
    color: var(--theme-color);
    font-size: 24px;
}

.course-outcomes-card .outcomes-content {
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--body-color);
    line-height: 1.6;
}

.course-outcomes-card .outcomes-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.course-outcomes-card .outcomes-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.course-outcomes-card .outcomes-content li:last-child {
    margin-bottom: 0;
}

.course-outcomes-card .outcomes-content li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--theme-color);
    font-size: 14px;
}

/* Course Requirements Widget */
.course-requirements-card {
    background-color: var(--white-color);
    border: 3px solid var(--vs-secondary-color);
    padding: 30px;
    margin: 30px 0;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(73, 13, 89, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.course-requirements-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(73, 13, 89, 0.1);
    border-color: var(--theme-color);
}

.course-requirements-card .requirements-title {
    font-family: var(--title-font);
    font-size: 22px;
    color: var(--vs-secondary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--smoke-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-requirements-card .requirements-title i {
    color: var(--theme-color);
    font-size: 24px;
}

.course-requirements-card .requirements-content {
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--body-color);
    line-height: 1.6;
}

.course-requirements-card .requirements-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.course-requirements-card .requirements-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.course-requirements-card .requirements-content li:last-child {
    margin-bottom: 0;
}

.course-requirements-card .requirements-content li::before {
    content: "\f05a";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--theme-color);
    font-size: 14px;
}