.programmes-grid {
    display: grid;
    gap: 1rem; /* gap-3 */
    margin-top: 1.5rem; /* mt-6 */
}

@media (min-width: 640px) {
    .programmes-grid {
        grid-template-columns: repeat(3, 1fr); /* sm:grid-cols-3 */
    }
}
#background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* ensures it's behind other content */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1; /* reduced opacity */
    transition: background-image 1s ease-in-out; /* smooth fade */
}

.programme-card {
    background: rgba(255, 255, 255, 0.1); /* bg-white/10 */
    padding: 1rem; /* p-4 */
    border-radius: 1rem; /* rounded-2xl */
    color: rgba(255, 255, 255, 0.9); /* text-white/90 */
    border: 1px solid rgba(255, 255, 255, 0.15); /* ring-1 ring-white/15 */
    transition: transform 0.2s, box-shadow 0.2s;
}

.programme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.programme-card p {
    margin: 0.25rem 0;
}

.programme-card .small {
    font-size: 0.875rem; /* text-sm */
    opacity: 0.9;
}

.programme-card .medium {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
}

.programme-card .bold {
    font-size: 1.125rem; /* text-lg */
    font-weight: 800; /* font-extrabold */
    letter-spacing: 0.05em; /* tracking-wide */
}


.intro-section {
    background: #fff;
    padding: 40px 0;
}

.intro-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 1024px) {
    .intro-grid {
        flex-direction: row;
    }
}

.intro-col {
    flex: 1;
}

/* Headings */
.intro-heading {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
    border-bottom: 2px solid #3b82f6;
    display: inline-block;
    color: var(--amucta-blue);
}

/* Remarks */
.remarks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

@media (min-width: 640px) {
    .remarks {
        flex-direction: row;
    }
}

.remarks-img {
    width: 128px;
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Optional: controls how the image fits within its box */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    flex-shrink: 0; /* Prevent image from shrinking */
}

.remarks-text {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Events */
.events-list {
    margin-top: 16px;
    list-style: none;
    padding: 0;
}

.event-item {
    margin-bottom: 16px;
}

.event-flex {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.event-img {
    width: 40px;
}

.event-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1f2937;
    display: block;
    transition: color 0.2s;
}

.event-title:hover {
    color: #2563eb;
}

.event-meta {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.event-new {
    width: 24px;
    height: auto;
}

.event-divider {
    margin-top: 8px;
    border: 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Shortcut Links */
.shortcuts {
    margin-top: 16px;
    list-style: none;
    padding: 0;
}

.shortcut-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: #1f2937;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.shortcut-link i {
    color: #2563eb;
    margin-top: 2px;
}

.shortcut-link:hover {
    color: #2563eb;
}

/* Links */
.link-primary {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.link-primary:hover {
    text-decoration: underline;
}

.news-section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background: #f7fafc;
}
.news-secion-item{ width: 100%;padding: 0 16px;}
@media (min-width: 768px) {
    .news-section{
        align-items: start;
        flex-direction: row;
    }
    .news-secion-item{width: 48%;}
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid var(--amucta-blue);
    padding-bottom: 8px;
    margin-bottom: 16px;
    color: var(--amucta-blue);
}

/* Attachments */
.attachments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attachment-item {
    margin-bottom: 16px;
}

.attachment-title {
    font-weight: 500;
    color: var(--amucta-blue);
    cursor: pointer;
    transition: color 0.2s;
}

.attachment-title:hover {
    text-decoration: underline;
}

.attachment-meta {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-link {
    color: #ca8a04;
    font-weight: 500;
}

/* News */
.news-item {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.news-img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
}

.news-content {
    flex: 1;
}

.news-title {
    font-weight: bold;
    color: var(--amucta-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-title:hover {
    text-decoration: underline;
}

.new-icon {
    width: 24px;
    height: 24px;
}

.news-desc {
    font-size: 0.875rem;
    color: #4b5563;
}

.read-more {
    color: var(--amucta-blue);
    font-weight: 500;
}

.news-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 4px;
}

/* Buttons/Links */
.view-more,
.read-more-btn {
    display: inline-block;
    margin-top: 12px;
    color: var(--amucta-blue);
    font-weight: 600;
    text-decoration: none;
}

.view-more:hover,
.read-more-btn:hover {
    text-decoration: underline;
}

.read-more-container {
    text-align: center;
    margin-top: 24px;
}

.section {
    padding: 2rem 1rem;
}
.or-title{
    max-width: 600px;
    background-color: rgba(12, 12, 12, 0.5);
    border-radius: 10px;
}

/* University Title */
.uni-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--amucta-blue);
    margin-bottom: 1rem;
    text-align: center;
}

/* Apply Now Button */
.apply-btn {
    display: inline-block;
    background: var(--amucta-blue);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
    animation: pulse 1.5s infinite;
}
.apply-btn:hover {
    background: #0099cc;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,191,255,0.4);
}

/* Pulse effect */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Highlight card */
.highlight-box {
    border-radius: 18px;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 1rem;
    text-align: start;
}
/* Search section */
.search-box {
    background: #fff;
    padding: 1.0rem;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    text-align: center;
    margin: 1rem auto;
}
.search-box h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}
.search-form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem;
    justify-content: center;
}
.search-form select {
    padding: 0.8rem 1.2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    max-width: 90%;
    font-size: 1rem;
}
.search-form button {
    background: var(--amucta-blue);
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.search-form button:hover {
    background: #003366;
}
