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

:root {
    --primary-color: #00254E;
    --primary-light: #003D7A;
    --primary-dark: #001833;
    --secondary-color: #FFB81C;
    --accent-color: #00A3E0;
    --success-color: #00B140;
    --dark-color: #1a1a1a;
    --light-color: #f5f7fa;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e6ed;
    --shadow-sm: 0 2px 8px rgba(0, 37, 78, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 37, 78, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 37, 78, 0.16);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fafbfc;
    overflow-x: hidden;
}

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

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 37, 78, 0.15);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 37, 78, 0.1);
}

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

.logo img {
    height: 80px;
    width: auto;
    background: white;
}

.logo-text h1 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.logo-text p {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 800;   
}

.header-contact {
    text-align: right;
}

.header-contact p {
    margin: 5px 0;
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.header-contact i {
    color: var(--secondary-color);
    font-size: 16px;
}

.header-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Navigation Styles */
.main-nav {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 0 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    padding: 15px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--secondary-color);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 18px 24px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu > li > a:hover {
    color: var(--secondary-color);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--secondary-color);
    transition: transform 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--secondary-color);
    background-color: rgba(255, 184, 28, 0.1);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    list-style: none;
    padding: 12px 0;
    z-index: 1001;
    border-radius: 0 0 12px 12px;
    border-top: 3px solid var(--secondary-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(0, 37, 78, 0.05) 0%, transparent 100%);
    color: var(--primary-color);
    padding-left: 28px;
    border-left-color: var(--secondary-color);
}

.dropdown-toggle i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Hero Section - Image Slider */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #f8f9fc;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 37, 78, 0.4), rgba(0, 37, 78, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    color: white;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
    opacity: 0.95;
    line-height: 1.7;
    color: white;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--secondary-color);
    width: 40px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 37, 78, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 8px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 37, 78, 0.3);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 37, 78, 0.1);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Section Styles */
.section {
    padding: 60px 0;
    background-color: #ffffff;
}

.section:nth-child(even) {
    background-color: #f8f9fc;
}

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

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

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

/* Card Styles */
.card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 10px;
}

.card ul {
    list-style: none;
    margin-top: 15px;
}

.card ul li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.card ul li i {
    color: var(--success-color);
    margin-top: 4px;
    font-size: 14px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 32px;
    color: var(--white);
}

/* Program Cards */
.program-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.program-card:hover .icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 20px rgba(0, 37, 78, 0.3);
}

.program-card .icon i {
    font-size: 42px;
    color: var(--white);
}

.program-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.program-card .btn {
    margin-top: 10px;
    font-size: 14px;
    padding: 12px 30px;
}

/* Table Styles */
.table-responsive,
.table-container {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

table thead th {
    padding: 18px 15px;
    text-align: left;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

table tbody tr:hover {
    background-color: var(--light-color);
}

table tbody tr:last-child {
    border-bottom: none;
}

table tbody td {
    padding: 16px 15px;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

table tbody td strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    margin: 25px 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

.info-box p {
    line-height: 1.8;
    color: var(--text-color);
}

.info-box.success {
    border-left-color: var(--success-color);
    background: linear-gradient(135deg, rgba(0, 177, 64, 0.05) 0%, var(--white) 100%);
}

.info-box.success h4 {
    color: var(--success-color);
}

.info-box.warning {
    border-left-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(255, 184, 28, 0.05) 0%, var(--white) 100%);
}

.info-box.warning h4 {
    color: var(--secondary-color);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card i {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.contact-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 60px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.9;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0.9;
}

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

.footer-section i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-bottom p {
    font-size: 14px;
}

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

.fade-in {
    animation: fadeInUp 1s ease;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Downloads Table Styles */
.downloads-table {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-top: 30px;
}

.downloads-table table {
    width: 100%;
}

.downloads-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.downloads-table thead th {
    color: var(--white);
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.downloads-table tbody tr {
    transition: all 0.3s ease;
}

.downloads-table tbody tr:hover {
    background-color: var(--light-color);
}

.downloads-table tbody td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.downloads-table tbody tr:last-child td {
    border-bottom: none;
}

.btn-download {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 37, 78, 0.2);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 37, 78, 0.3);
}

.btn-download i {
    margin-right: 5px;
}

/* Mobile Responsive Design - Enhanced */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .nav-menu > li > a {
        padding: 16px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Header Adjustments */
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 15px 0;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 14px;
    }
    
    .header-contact {
        text-align: center;
    }
    
    .header-contact p {
        justify-content: center;
        font-size: 13px;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: var(--shadow-lg);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu > li > a {
        padding: 16px 20px;
        border-bottom: none;
        color: var(--white);
        width: 100%;
    }
    
    .nav-menu > li > a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0;
        border-top: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 12px 30px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dropdown-menu li a:hover {
        background: rgba(255, 184, 28, 0.2);
        color: var(--secondary-color);
    }
    
    /* Hero Section Mobile */
    .hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    /* Section Adjustments */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    /* Card Grid Mobile */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Card Adjustments */
    .card {
        padding: 25px;
    }
    
    .card h3 {
        font-size: 20px;
    }
    
    .program-card {
        padding: 30px 20px;
    }
    
    .program-card h3 {
        font-size: 20px;
    }
    
    /* Button Adjustments */
    .btn {
        padding: 12px 28px;
        font-size: 14px;
        margin: 5px;
        display: inline-block;
    }
    
    .hero-content .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
    
    /* Table Responsive */
    .table-responsive,
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-responsive table,
    .table-container table {
        min-width: 600px;
    }
    
    table thead th,
    table tbody td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    /* Info Box Mobile */
    .info-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .info-box h3 {
        font-size: 20px;
    }
    
    .info-box h4 {
        font-size: 18px;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 25px 15px;
    }
    
    .page-header h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    
    /* Downloads Table Mobile */
    .downloads-table {
        overflow-x: auto;
    }
    
    .downloads-table table {
        min-width: 600px;
    }
    
    .btn-download {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    /* Contact Card Mobile */
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card i {
        font-size: 42px;
    }
    
    .contact-card h3 {
        font-size: 18px;
    }
    
    /* Utility Classes Mobile */
    .mt-40 {
        margin-top: 30px;
    }
    
    .mb-40 {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 18px;
    }
    
    .program-card .icon {
        width: 70px;
        height: 70px;
    }
    
    .program-card .icon i {
        font-size: 32px;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .page-header h1 {
        font-size: 22px;
    }
    
    .page-header p {
        font-size: 15px;
    }
    
    table thead th,
    table tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }
}

/* Landscape Orientation Fix */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .slider-arrow,
    .slider-controls,
    .mobile-menu-toggle,
    .btn {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
/* ============================================
   PROFESSIONAL UI STYLES - PROGRAMS & BOARDS
   ============================================ */

/* Programs Grid - Clean Professional Layout */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.program-item {
    background: #ffffff;
    border: 1px solid #e8eef5;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00254E 0%, #003d7a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.program-item:hover::before {
    transform: scaleX(1);
}

.program-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 37, 78, 0.12);
    border-color: #00254E;
}

.program-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
}

.program-item:hover .program-icon-wrapper {
    background: linear-gradient(135deg, #00254E 0%, #003d7a 100%);
    transform: scale(1.1) rotate(-5deg);
}

.program-icon-wrapper i {
    font-size: 32px;
    color: #00254E;
    transition: all 0.4s ease;
}

.program-item:hover .program-icon-wrapper i {
    color: #ffffff;
    transform: scale(1.1);
}

.program-item h3 {
    color: #00254E;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 20px 0 15px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00254E, transparent);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.program-item:hover .program-divider {
    width: 80px;
    background: linear-gradient(90deg, transparent, #FFB81C, transparent);
}

.program-link {
    color: #00254E;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.program-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.program-link:hover {
    color: #FFB81C;
    gap: 12px;
}

.program-link:hover i {
    transform: translateX(5px);
}

/* Board of Graduate Studies - Featured Section */
.bgs-featured {
    background: linear-gradient(135deg, #00254E 0%, #003d7a 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 8px 24px rgba(0, 37, 78, 0.15);
    position: relative;
    overflow: hidden;
}

.bgs-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bgs-featured-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bgs-featured-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.bgs-featured:hover .bgs-featured-icon {
    transform: scale(1.05) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
}

.bgs-featured-icon i {
    font-size: 40px;
    color: #ffffff;
}

.bgs-featured-text h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.bgs-featured-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.bgs-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #ffffff;
    color: #00254E;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bgs-featured-link:hover {
    background: #FFB81C;
    color: #00254E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 184, 28, 0.3);
}

.bgs-featured-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.bgs-featured-link:hover i {
    transform: translateX(5px);
}

/* Boards Subtitle */
.boards-subtitle {
    margin: 50px 0 30px;
    text-align: center;
}

.boards-subtitle h3 {
    color: #00254E;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.boards-subtitle h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFB81C, transparent);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .bgs-featured-content {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }
    
    .bgs-featured-link {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-item {
        padding: 30px 20px;
    }
    
    .program-item h3 {
        font-size: 17px;
        min-height: auto;
    }
    
    .bgs-featured {
        padding: 30px 20px;
    }
    
    .bgs-featured-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .bgs-featured-icon {
        margin: 0 auto;
        width: 70px;
        height: 70px;
    }
    
    .bgs-featured-icon i {
        font-size: 32px;
    }
    
    .bgs-featured-text h3 {
        font-size: 22px;
    }
    
    .bgs-featured-text p {
        font-size: 14px;
    }
    
    .bgs-featured-link {
        margin: 10px auto 0;
    }
    
    .boards-subtitle h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .program-item {
        padding: 25px 15px;
    }
    
    .program-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .program-icon-wrapper i {
        font-size: 28px;
    }
    
    .program-item h3 {
        font-size: 16px;
    }
    
    .bgs-featured {
        padding: 25px 15px;
    }
    
    .bgs-featured-icon {
        width: 60px;
        height: 60px;
    }
    
    .bgs-featured-icon i {
        font-size: 28px;
    }
    
    .bgs-featured-text h3 {
        font-size: 20px;
    }
    
    .bgs-featured-link {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* Additional refinements for cleaner look */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #00254E;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 15px;
    }
}

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

.resource-category {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.resource-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.resource-category h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-category h3 i {
    font-size: 24px;
    color: var(--secondary-color);
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-list li {
    padding: 10px 0;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 37, 78, 0.05);
    transition: all 0.3s ease;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.resource-list li i {
    color: var(--accent-color);
    font-size: 12px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .resource-areas {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-category {
        padding: 20px;
    }
    
    .resource-category h3 {
        font-size: 18px;
    }
    
    .resource-list li {
        font-size: 14px;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .resource-category {
        padding: 15px;
    }
    
    .resource-category h3 {
        font-size: 16px;
    }
    
    .resource-list li {
        font-size: 13px;
    }
}

/* Board of Graduate Studies - Main Card Styling */
.bgs-main-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s ease;
    border: 3px solid var(--secondary-color);
}

.bgs-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 37, 78, 0.25);
}

.bgs-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 184, 28, 0.3);
    transition: all 0.4s ease;
}

.bgs-main-card:hover .bgs-icon {
    transform: scale(1.1) rotate(5deg);
}

.bgs-icon i {
    font-size: 48px;
    color: var(--primary-color);
}

.bgs-content {
    flex: 1;
}

.bgs-content h3 {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.bgs-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.bgs-content .btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    border: 2px solid var(--secondary-color);
}

.bgs-content .btn:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Mobile Responsive for BGS Card */
@media (max-width: 768px) {
    .bgs-main-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .bgs-icon {
        width: 80px;
        height: 80px;
    }
    
    .bgs-icon i {
        font-size: 36px;
    }
    
    .bgs-content h3 {
        font-size: 24px;
    }
    
    .bgs-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .bgs-main-card {
        padding: 25px 15px;
    }
    
    .bgs-icon {
        width: 70px;
        height: 70px;
    }
    
    .bgs-icon i {
        font-size: 32px;
    }
    
    .bgs-content h3 {
        font-size: 20px;
    }
    
    .bgs-content p {
        font-size: 15px;
    }
}
