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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
     
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background: rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3c72;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .nav-menu a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        padding: 0.5rem 1rem;
        border-radius: 5px;
    }

        .nav-menu a:hover {
            background: rgba(255,255,255,0.1);
            color: #ffd700;
        }

/* Hero Section */
 
 .hero {
   background: url('../images/banner.png') no-repeat center center;
    background-size: cover;
    color: white; /* ensures text is visible */
    padding: 100px 0; /* adjust spacing */
    position: relative;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #ffd700;
    color: #1e3c72;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Quick Stats */
.stats {
    background: white;
    padding: 3rem 0;
    margin: -2rem 20px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Programs Section */
.programs {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: #1e3c72;
        margin-bottom: 1rem;
    }

    .section-title p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .program-card:hover {
        transform: translateY(-5px);
    }

.program-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 2rem;
    text-align: center;
}

    .program-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

.program-content {
    padding: 2rem;
}

    .program-content ul {
        list-style: none;
        margin-bottom: 1.5rem;
    }

    .program-content li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }

        .program-content li:last-child {
            border-bottom: none;
        }

        .program-content li:before {
            content: "✓";
            color: #28a745;
            font-weight: bold;
            margin-right: 10px;
        }

/* News Section */
.news {
    padding: 4rem 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .news-card:hover {
        transform: translateY(-5px);
    }

.news-image {
    height: 200px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    padding-top:30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}
.news-image img {
    outline: 4px solid #fff; /* white stroke */
    outline-offset: -4px;    /* keep stroke close to image */
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
}

    .read-more:hover {
        color: #2a5298;
    }

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-section a:hover {
        color: #ffd700;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        margin: -1rem 10px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
     font-family: 'Arial', sans-serif;
     line-height: 1.6;
     color: #333;
     background: #f8f9fa;
 }
 
  Header 
 .header {
     background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
     color: white;
     padding: 1rem 0;
     position: relative;
     box-shadow: 0 2px 10px rgba(0,0,0,0.1);
 }
 
 .top-bar {
     background: rgba(0,0,0,0.1);
     padding: 0.5rem 0;
     font-size: 0.9rem;
 }
 
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }
 
 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 0;
 }
 
 .logo {
     display: flex;
     align-items: center;
     font-size: 1.8rem;
     font-weight: bold;
 }
 
 .logo-icon {
     width: 50px;
     height: 50px;
     background: white;
     border-radius: 50%;
     margin-right: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #1e3c72;
     font-size: 1.5rem;
     font-weight: bold;
 }
 
 .nav-menu {
     display: flex;
     list-style: none;
     gap: 2rem;
 }
 
 .nav-menu a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
     padding: 0.5rem 1rem;
     border-radius: 5px;
 }
 
 .nav-menu a:hover, .nav-menu a.active {
     background: rgba(255,255,255,0.1);
     color: #ffd700;
 }
 
  Page Header 
 .page-header {
     background: linear-gradient(rgba(30,60,114,0.9), rgba(42,82,152,0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23f0f8ff" width="1200" height="400"/><polygon fill="%231e3c72" points="0,400 300,300 600,350 900,250 1200,300 1200,400"/></svg>');
     color: white;
     padding: 3rem 0;
     text-align: center;
     background-size: cover;
 }
 
 .page-header h1 {
     font-size: 3rem;
     margin-bottom: 1rem;
 }
 
 .breadcrumb {
     font-size: 1.1rem;
     opacity: 0.9;
 }
 
 .breadcrumb a {
     color: #ffd700;
     text-decoration: none;
 }
 
  Program Categories 
 .program-categories {
     padding: 2rem 0;
     background: white;
     border-bottom: 1px solid #eee;
 }
 
 .category-filters {
     display: flex;
     justify-content: center;
     gap: 1rem;
     flex-wrap: wrap;
 }
 
 .filter-btn {
     padding: 0.8rem 1.5rem;
     border: 2px solid #1e3c72;
     background: white;
     color: #1e3c72;
     border-radius: 25px;
     cursor: pointer;
     font-weight: 600;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }
 
 .filter-btn:hover, .filter-btn.active {
     background: #1e3c72;
     color: white;
 }
 
  Main Content 
 .main-content {
     padding: 4rem 0;
     background: #f8f9fa;
 }
 
 .section-title {
     text-align: center;
     margin-bottom: 3rem;
 }
 
 .section-title h2 {
     font-size: 2.5rem;
     color: #1e3c72;
     margin-bottom: 1rem;
 }
 
 .section-title p {
     font-size: 1.1rem;
     color: #666;
     max-width: 600px;
     margin: 0 auto;
 }
 
  Programs Grid 
 .programs-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     margin-bottom: 4rem;
 }
 
 .program-card {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0,0,0,0.1);
     transition: transform 0.3s ease;
     position: relative;
 }
 
 .program-card:hover {
     transform: translateY(-5px);
 }
 
 .program-header {
     background: linear-gradient(135deg, #1e3c72, #2a5298);
     color: white;
     padding: 2rem;
     text-align: center;
     position: relative;
 }
 
 .program-level {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: rgba(255,255,255,0.2);
     padding: 0.3rem 0.8rem;
     border-radius: 15px;
     font-size: 0.8rem;
     font-weight: 600;
 }
 
 .program-icon {
     width: 80px;
     height: 80px;
     background: rgba(255,255,255,0.2);
     border-radius: 50%;
     margin: 0 auto 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
 }
 
 .program-header h3 {
     font-size: 1.8rem;
     margin-bottom: 0.5rem;
 }
 
 .program-subtitle {
     opacity: 0.9;
     font-size: 1rem;
 }
 
 .program-content {
     padding: 2rem;
 }
 
 .program-overview {
     margin-bottom: 1.5rem;
     color: #666;
     line-height: 1.6;
 }
 
 .program-features {
     margin-bottom: 2rem;
 }
 
 .program-features h4 {
     color: #1e3c72;
     margin-bottom: 1rem;
     font-size: 1.1rem;
 }
 
 .program-features ul {
     list-style: none;
 }
 
 .program-features li {
     padding: 0.5rem 0;
     border-bottom: 1px solid #f0f0f0;
     position: relative;
     padding-left: 25px;
 }
 
 .program-features li:last-child {
     border-bottom: none;
 }
 
 .program-features li:before {
     content: "✓";
     color: #28a745;
     font-weight: bold;
     position: absolute;
     left: 0;
 }
 
 .program-details {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
     margin-bottom: 1.5rem;
     padding: 1rem;
     background: #f8f9fa;
     border-radius: 10px;
 }
 
 .detail-item {
     text-align: center;
 }
 
 .detail-label {
     font-size: 0.9rem;
     color: #666;
     margin-bottom: 0.3rem;
 }
 
 .detail-value {
     font-weight: bold;
     color: #1e3c72;
     font-size: 1.1rem;
 }
 
 .program-actions {
     display: flex;
     gap: 1rem;
     justify-content: center;
 }
 
 .btn {
     padding: 10px 20px;
     border: none;
     border-radius: 25px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     cursor: pointer;
     display: inline-block;
     text-align: center;
 }
 
 .btn-primary {
     background: #1e3c72;
     color: white;
 }
 
 .btn-secondary {
     background: transparent;
     color: #1e3c72;
     border: 2px solid #1e3c72;
 }
 
 .btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0,0,0,0.2);
 }
 
 .btn-secondary:hover {
     background: #1e3c72;
     color: white;
 }
 
  Graduate Programs 
 .graduate-section {
     background: white;
     padding: 4rem 0;
 }
 
 .graduate-intro {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 3rem;
     padding: 2rem;
     background: #f8f9fa;
     border-radius: 15px;
 }
 
  Professional Development 
 .professional-section {
     background: #f8f9fa;
     padding: 4rem 0;
 }
 
 .cert-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
 }
 
 .cert-card {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 3px 15px rgba(0,0,0,0.1);
     text-align: center;
     transition: transform 0.3s ease;
 }
 
 .cert-card:hover {
     transform: translateY(-5px);
 }
 
 .cert-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #1e3c72, #2a5298);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1rem;
     font-size: 1.5rem;
 }
 
 .cert-card h4 {
     color: #1e3c72;
     margin-bottom: 1rem;
 }
 
 .cert-duration {
     color: #666;
     font-size: 0.9rem;
     margin-bottom: 1rem;
 }
 
  Admission Requirements 
 .requirements-section {
     background: white;
     padding: 4rem 0;
 }
 
 .requirements-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }
 
 .requirement-card {
     background: #f8f9fa;
     padding: 2rem;
     border-radius: 15px;
     border-left: 5px solid #1e3c72;
 }
 
 .requirement-card h4 {
     color: #1e3c72;
     margin-bottom: 1rem;
 }
 
 .requirement-card ul {
     list-style: none;
 }
 
 .requirement-card li {
     padding: 0.3rem 0;
     color: #666;
 }
 
 .requirement-card li:before {
     content: "•";
     color: #1e3c72;
     font-weight: bold;
     margin-right: 10px;
 }
 
  Footer 
 .footer {
     background: #1e3c72;
     color: white;
     padding: 3rem 0 1rem;
 }
 
 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-bottom: 2rem;
 }
 
 .footer-section h3 {
     margin-bottom: 1rem;
     color: #ffd700;
 }
 
 .footer-section ul {
     list-style: none;
 }
 
 .footer-section li {
     margin-bottom: 0.5rem;
 }
 
 .footer-section a {
     color: #ccc;
     text-decoration: none;
     transition: color 0.3s ease;
 }
 
 .footer-section a:hover {
     color: #ffd700;
 }
 
 .footer-bottom {
     border-top: 1px solid rgba(255,255,255,0.1);
     padding-top: 1rem;
     text-align: center;
     color: #ccc;
 }
 
  Responsive Design 
 @media (max-width: 768px) {
     .nav-menu {
         flex-direction: column;
         gap: 0.5rem;
     }
     
     .page-header h1 {
         font-size: 2rem;
     }
     
     .category-filters {
         flex-direction: column;
         align-items: center;
     }
     
     .program-details {
         grid-template-columns: 1fr;
     }
     
     .program-actions {
         flex-direction: column;
     }
 }