/* ===== RESET & BASE STYLES ===== */
:root {
       --primary-color: #0b3b5c;        /* Deep navy blue from logo */
            --secondary-color: #f5b01e;       /* Golden yellow accent */
            --accent-color: #1f7532;          /* Rich green for science/tech */
            --light-color: #f8fafc;            /* Clean white background */
            --dark-color: #2d2d2d;             /* Dark gray for text */
            --text-color: #333333;              /* Main text color */
            --gray-light: #e2e8f0;
            --gray-medium: #94a3b8;

            /* derived shades (for hover, borders, subtle backgrounds) */
            --primary-soft: #e9f0f5;           /* very light navy tint */
            --secondary-soft: #fef3da;          /* soft golden glow */
            --accent-soft: #e2f3e4;  
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 59, 92, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== HEADER STYLES ===== */
header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon img {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-style: italic;
}

/* Portal Button */
.portal-button-container {
    margin-left: auto;
    margin-right: 20px;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.portal-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.portal-btn i {
    font-size: 1.2rem;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4b6d 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="15" fill="none" stroke="white" stroke-width="2"/></svg>') repeat;
    background-size: 50px 50px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.admission-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    box-shadow: var(--shadow);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== PROGRAMS SECTION ===== */
#programs {
    background: white;
}

.programs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.program-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 30px;
}

.program-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.program-item h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.program-item p {
    color: var(--gray-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.duration {
    display: inline-block;
    background: var(--gray-light);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== ADMISSION INFO SECTION ===== */
.admission-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.admission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.admission-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.admission-text p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.admission-text ul {
    list-style: none;
    margin: 25px 0;
}

.admission-text ul li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.admission-text ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.admission-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.admission-image img:hover {
    transform: scale(1.02);
}

/* ===== AFFILIATED UNIVERSITIES SECTION ===== */
.affiliated-section {
    background: white;
}

.universities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.university-card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.university-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
}

.university-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.university-card p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ===== PRINCIPAL SECTION ===== */
.principal-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4b6d 100%);
    color: white;
}

.principal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.principal-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.principal-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.principal-image:hover img {
    transform: scale(1.05);
}

.principal-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.principal-badge .year {
    font-size: 1.5rem;
    line-height: 1.2;
}

.principal-quote {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--secondary-color);
}

.principal-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.principal-title {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.principal-message {
    margin: 20px 0;
    line-height: 1.8;
}

.principal-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.signature-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.signature-title {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: white;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 59, 92, 0.95), transparent);
    color: white;
    padding: 20px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn span {
    font-weight: 500;
}

/* ===== ADMISSION CTA SECTION ===== */
.admission-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.cta-card {
    background: white;
    color: var(--text-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.cta-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-card p {
    color: var(--gray-medium);
    margin-bottom: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 15px;
}

.cta-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.cta-note i {
    color: var(--accent-color);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info span {
    opacity: 0.8;
    line-height: 1.6;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .portal-button-container {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 2;
    }
    
    nav {
        display: none;
        order: 3;
        width: 100%;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .admission-container,
    .principal-container,
    .cta-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 15px;
        border-radius: 50%;
    }
    
    .principal-quote {
        font-size: 1.4rem;
    }
    
    .principal-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .portal-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .programs-list {
        grid-template-columns: 1fr;
    }
    
    .university-card {
        padding: 20px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Print Styles */
@media print {
    header,
    .hero,
    .whatsapp-btn,
    footer {
        display: none;
    }
}
/* ===== ADDITIONAL STYLES FOR BS PROGRAMS PAGE ===== */
/* Enhancements beyond the existing style.css */

/* Page Header Enhancement */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4b6d 100%);
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* BS Programs Grid Layout */
.bs-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Program Card Styling */
.bs-program-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.bs-program-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bs-program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

/* Card Header */
.bs-program-header {
    background: linear-gradient(145deg, var(--primary-color) 0%, #1a4b6d 100%);
    color: white;
    padding: 25px 20px 20px;
    text-align: center;
    position: relative;
}

.bs-program-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
}

.bs-program-degree {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Program Icon (Fallback) */
.bs-program-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--secondary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Card Body */
.bs-program-body {
    padding: 25px 20px;
    flex-grow: 1;
    background: white;
}

.bs-program-desc {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Card Footer */
.bs-program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--light-color);
    border-top: 1px solid var(--gray-light);
    font-size: 0.9rem;
}

.bs-program-duration,
.bs-program-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.bs-program-duration i,
.bs-program-credits i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Subject Tags (Optional) */
.bs-program-subjects {
    padding: 12px 20px;
    background: rgba(245, 176, 30, 0.05);
    border-top: 1px dashed var(--gray-light);
    color: var(--gray-medium);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bs-program-subjects i {
    color: var(--accent-color);
}

.bs-program-subjects small {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

/* Admission CTA Enhancement (if used on this page) */
.admission-cta .container {
    text-align: center;
    max-width: 800px;
}

.admission-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.admission-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.admission-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.admission-cta .cta-button:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Responsive Adjustments for New Elements */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .bs-programs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bs-program-header h3 {
        font-size: 1.4rem;
    }
    
    .admission-cta h2 {
        font-size: 2rem;
    }
    
    .admission-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bs-program-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .page-header {
        padding: 40px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}/* ===== PROGRAM DETAILS PAGE STYLES ===== */
/* Add these styles to your style.css file */

/* Program Hero Section */
.program-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4b6d 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.program-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="15" fill="none" stroke="white" stroke-width="2"/></svg>') repeat;
    background-size: 50px 50px;
}

.program-hero .container {
    position: relative;
    z-index: 1;
}

.program-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.program-badge {
    text-align: center;
    margin-bottom: 40px;
}

.program-badge i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
}

.program-badge h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.program-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
}

.program-hero-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.detail-item h4 {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-item p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Program Details Section */
.program-details {
    padding: 60px 0;
    background: white;
}

.details-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-section {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.detail-section:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.detail-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

.detail-section h2 i {
    color: var(--secondary-color);
}

.detail-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Requirements List */
.requirements {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.req-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.req-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.req-item p {
    margin: 0;
    font-size: 1rem;
}

/* Program CTA Button */
.program-cta {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4b6d 100%);
    border-radius: var(--border-radius);
    color: white;
}

.program-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid transparent;
    margin-bottom: 15px;
}

.program-cta .cta-button:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.cta-note {
    opacity: 0.9;
    font-size: 0.95rem;
}

.cta-note i {
    color: var(--secondary-color);
}

/* Back to Programs Button */
.back-to-programs {
    padding: 30px 0 60px;
    background: white;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--light-color);
    border: 1px solid var(--gray-light);
}

.back-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-5px);
    border-color: var(--primary-color);
}

.back-button i {
    transition: var(--transition);
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* Responsive Adjustments for Program Page */
@media (max-width: 768px) {
    .program-badge h1 {
        font-size: 2rem;
    }
    
    .program-badge i {
        font-size: 3rem;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
    
    .program-hero-details {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .detail-item {
        padding: 10px 0;
    }
    
    .detail-section h2 {
        font-size: 1.5rem;
    }
    
    .detail-section p {
        font-size: 1rem;
    }
    
    .req-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .program-cta {
        padding: 30px 20px;
    }
    
    .program-cta .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .program-badge h1 {
        font-size: 1.6rem;
    }
    
    .program-tag {
        font-size: 0.9rem;
    }
    
    .detail-item i {
        font-size: 1.5rem;
    }
    
    .detail-item p {
        font-size: 1rem;
    }
    
    .detail-section {
        padding: 20px;
    }
    
    .back-button {
        font-size: 1rem;
        padding: 8px 16px;
    }
}

/* Print Styles for Program Page */
@media print {
    .program-hero,
    .program-cta,
    .back-to-programs {
        background: none;
        color: black;
    }
    
    .program-hero {
        padding: 20px 0;
    }
    
    .program-hero-details {
        border: 1px solid #ddd;
        background: none;
    }
    
    .detail-item i {
        color: #333;
    }
}
/* ===== DEPARTMENTS SECTION ===== */
.departments-section {
    background: var(--primary-soft);
}

.departments-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.department-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.department-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.department-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--secondary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.department-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.department-card p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}
/* ===============================
   COLLEGE LIFE PAGE STYLES
================================= */

/* ===== LIFE GALLERY GRID ===== */
.life-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.life-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
}

.life-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.life-card-image {
    height: 220px;
    overflow: hidden;
}

.life-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.life-card:hover img {
    transform: scale(1.08);
}

.life-card-content {
    padding: 20px;
}

.life-card-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.life-card-content h3 i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.life-card-content p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tags */
.life-tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.life-tag {
    background: var(--secondary-soft);
    color: var(--primary-color);
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

/* ===== CLUBS SECTION ===== */
.clubs-section {
    background: var(--primary-soft);
}

.clubs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.club-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.club-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.club-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--secondary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.club-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.club-item p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== STUDENT VOICES ===== */
.student-voices {
    background: white;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.voice-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.voice-content {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.7;
}

.voice-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

/* ===== LIFE CTA ===== */
.life-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4b6d 100%);
    color: white;
    text-align: center;
    padding: 70px 0;
}

.life-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.life-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.life-cta .btn {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.life-cta .btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .life-card-image {
        height: 200px;
    }

    .life-cta h2 {
        font-size: 2rem;
    }

    .life-cta p {
        font-size: 1rem;
    }

    .voices-grid,
    .clubs-container,
    .life-grid {
        grid-template-columns: 1fr;
    }
}
#image-slider {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slider-images {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 0 0 100%;
}
    /* ===== ALUMNI SLIDER - PURE ADDITION, NO CONFLICT ===== */
        /* This entire block is extra and does not override any existing IDs/classes 
           from the original site. It uses unique class names to avoid interference. */
        
        .alumni-section-wrapper {
            background: linear-gradient(135deg, #f5f7fc 0%, #eef2f7 100%);
            padding: 70px 0 80px;
            border-top: 1px solid rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .alumni-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        .alumni-header {
            text-align: center;
            margin-bottom: 55px;
        }
        
        .alumni-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color, #0b3b5c);
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        
        .alumni-header h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color, #f5b01e);
            border-radius: 4px;
        }
        
        .alumni-header p {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 700px;
            margin: 20px auto 0;
            line-height: 1.5;
        }
        
        /* Slider main container - unique namespace */
        .alumni-slider-outer {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 28px;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
            background: #ffffff;
        }
        
        .alumni-slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        
        /* Alumni card - each slide */
        .alumni-slide-card {
            flex: 0 0 100%;
            display: flex;
            flex-wrap: wrap;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            min-height: 460px;
        }
        
        /* Left side: image area */
        .alumni-photo-side {
            flex: 1.2;
            background: #f0f4f9;
            position: relative;
            overflow: hidden;
            min-height: 400px;
        }
        
        .alumni-photo-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .alumni-slide-card:hover .alumni-photo-side img {
            transform: scale(1.03);
        }
        
        /* Right side: testimonial content */
        .alumni-content-side {
            flex: 1;
            padding: 48px 40px;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .alumni-quote-icon {
            font-size: 3rem;
            color: var(--secondary-color, #f5b01e);
            opacity: 0.3;
            margin-bottom: 15px;
            line-height: 1;
        }
        
        .alumni-testimonial-text {
            font-size: 1.35rem;
            line-height: 1.55;
            color: #1e293b;
            font-weight: 500;
            margin-bottom: 28px;
            font-style: normal;
            position: relative;
        }
        
        .alumni-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-color, #0b3b5c);
            margin-bottom: 6px;
        }
        
        .alumni-batch {
            display: inline-block;
            background: var(--secondary-soft, #fef3da);
            color: var(--primary-color, #0b3b5c);
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 10px;
            letter-spacing: 0.3px;
        }
        
        .alumni-achievement {
            margin-top: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #2d6a4f;
            font-size: 0.95rem;
            font-weight: 500;
            border-top: 1px solid #e9edf2;
            padding-top: 18px;
        }
        
        .alumni-achievement i {
            color: var(--accent-color, #1f7532);
            font-size: 1.2rem;
        }
        
        /* Navigation buttons - custom, no conflict */
        .alumni-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
            transition: all 0.25s ease;
            z-index: 12;
            border: 1px solid rgba(0,0,0,0.08);
            color: var(--primary-color, #0b3b5c);
            font-size: 1.4rem;
        }
        
        .alumni-nav-btn:hover {
            background: var(--secondary-color, #f5b01e);
            color: white;
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 10px 22px rgba(0,0,0,0.2);
        }
        
        .alumni-prev {
            left: 18px;
        }
        
        .alumni-next {
            right: 18px;
        }
        
        /* Dots indicator */
        .alumni-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }
        
        .alumni-dot {
            width: 10px;
            height: 10px;
            background: #cbd5e1;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .alumni-dot.active-dot {
            width: 28px;
            background: var(--secondary-color, #f5b01e);
            border-radius: 20px;
        }
        
        /* Responsiveness: keep design fluid */
        @media (max-width: 900px) {
            .alumni-slide-card {
                flex-direction: column;
            }
            .alumni-photo-side {
                flex: auto;
                height: 320px;
                min-height: auto;
            }
            .alumni-content-side {
                padding: 32px 28px;
            }
            .alumni-testimonial-text {
                font-size: 1.15rem;
            }
            .alumni-name {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 580px) {
            .alumni-nav-btn {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
            .alumni-header h2 {
                font-size: 2rem;
            }
            .alumni-content-side {
                padding: 28px 20px;
            }
            .alumni-testimonial-text {
                font-size: 1rem;
            }
        }
        
        /* subtle animation for fade-in (doesn't override anything) */
        @keyframes alumniFadeSlide {
            0% { opacity: 0; transform: translateX(8px);}
            100% { opacity: 1; transform: translateX(0);}
        }
        .alumni-slide-card {
            animation: alumniFadeSlide 0.4s ease-out;
        }

/* Optional: Add a dot navigation or previous/next buttons if needed */