/* Base Styles */
:root {
    --primary-color: #ee902f;
    --secondary-color: #f9c851;
    --accent-color: #6bbf59;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-light: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1e456b;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #e6b840;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.school-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.school-short {
    font-size: 0.9rem;
    color: var(--text-light);
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 25px;
}

.navbar ul li a {
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
}

/* Programs Preview */
.programs-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.program-card {
    background-color: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    text-align: center;
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-weight: 600;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-controls button {
    background: transparent;
    color: white;
    border: 2px solid white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Call to Action */
.cta {
    padding: 60px 0;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-section .container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 100px);
        background-color: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .navbar ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        padding: 0;
    }
    .social-links,.school-short{
        display: none;
    }
    
    .contact-info span {
        margin-right: 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/programs-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

.section-header p {
    color: var(--text-light);
    font-style: italic;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-text p {
    margin-bottom: 20px;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.mission-card {
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.mission-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mission-card i {
    margin-right: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Philosophy Section */
.philosophy-section {
    padding: 60px 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.philosophy-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.philosophy-text ul {
    margin: 20px 0 20px 20px;
}

.philosophy-text ul li {
    margin-bottom: 10px;
}

.philosophy-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background-color: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.team-cta {
    text-align: center;
    margin-top: 30px;
}

/* Accreditation */
.accreditation {
    padding: 60px 0;
    text-align: center;
}

.accreditation h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.accreditation-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.accreditation-logos img {
    height: 60px;
    object-fit: contain;
}

/* Programs Navigation */
.programs-nav {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 100px;
    z-index: 90;
}

.programs-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.programs-nav a {
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
}

.programs-nav a:hover {
    color: var(--secondary-color);
}

/* Program Detail */
.program-detail {
    padding: 60px 0;
}

.program-detail:nth-child(even) {
    background-color: var(--light-color);
}

.program-header {
    text-align: center;
    margin-bottom: 40px;
}

.program-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

.program-header p {
    color: var(--text-light);
    font-style: italic;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.program-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-description h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.program-features {
    margin: 25px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 3px;
}

.program-schedule, .program-highlights {
    margin: 25px 0;
}

.program-schedule h4, .program-highlights h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.program-schedule ul, .program-highlights ul {
    margin-left: 20px;
}

/* Curriculum Areas */
.curriculum-areas {
    margin: 30px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.area {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.area:hover {
    background-color: var(--primary-color);
    color: white;
}

.area i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Enrichment Section */
.enrichment-section {
    padding: 60px 0;
}

.enrichment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.enrichment-card {
    background-color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary-color);
}

.enrichment-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.enrichment-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.comparison-table {
    overflow-x: auto;
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: var(--primary-color);
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Program CTA */
.program-cta {
    padding: 60px 0;
    text-align: center;
}

.program-cta h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.program-cta p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-row, .philosophy-content, .program-content {
        grid-template-columns: 1fr;
    }
    
    .programs-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .programs-nav {
        top: 80px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
}