/* ===== BASE STYLES ===== */
:root {
    --primary-blue: #0a2052;
    --accent-orange: #f07b38;
    --accent-green: #45cf67;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
}
:root {
    --primary-color: #003366;
    --secondary-color: #e67e22;
    --accent-color: #45cf67;
    --text-color: #444;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: var(--dark-gray);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--accent-green);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #3bb359;
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(10, 32, 82, 0.5);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    color: white;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.section-title {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
}


.admissions-header {
    background: linear-gradient(rgba(10, 32, 82, 0.85), rgba(10, 32, 82, 0.85)), 
                url('Samburu-North-TVC.jpg') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.admissions-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.admissions-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ===== ADMISSION STEPS ===== */
.admission-steps {
    padding: 60px 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: var(--light-gray);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}


/* ===== PROGRAM SECTION ===== */
.section-title {
    color: var(--primary-blue);
    font-size: 2rem;
    margin: 40px 0 20px;
    text-align: center;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-blue);
}

.tab-btn.active {
    color: var(--primary-blue);
    border-bottom: 3px solid var(--accent-orange);
}

/* Courses List */
.courses-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.course-category {
    margin-bottom: 30px;
}

.category-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-gray);
}

.courses-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
}

.course-item {
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.course-item:before {
    content: "•";
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: 10px;
}

.course-item:hover {
    background: rgba(10, 32, 82, 0.05);
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .courses-list {
        grid-template-columns: 1fr;
    }
}

/* ===== REQUIREMENTS SECTION ===== */
.requirements {
    padding: 60px 0;
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.requirement-card {
    padding: 25px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
}

.requirement-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.requirement-card ul {
    list-style-position: inside;
}

.requirement-card li {
    margin-bottom: 8px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(10, 32, 82, 0.9), rgba(10, 32, 82, 0.9)), 
                url('Samburu-North-TVC.jpg') center/cover;
    color: white;
    text-align: center;
}

.cta-section .section-title {
    color: white;
}

.cta-section .section-title:after {
    background: var(--accent-orange);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 30px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    background: var(--primary-blue);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}
.contact-infor h3 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
}
/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .admissions-header h1 {
        font-size: 2.2rem;
    }
    
    .admissions-header p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}