/* Global Styles */
body {
    font-family: 'Nastaliq', 'Jameel Noori Nastaleeq', 'Urdu Typesetting', 'Noto Nastaliq Urdu', serif;
    direction: rtl;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #0056b3;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.75rem;
    font-weight: bold;
    margin-left: 15px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #cce0ff;
    background-color: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Quick Links Section */
.quick-links-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quick-link-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #333;
    text-decoration: none;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.quick-link-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.quick-link-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.quick-link-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #0056b3;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #0056b3;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0056b3;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #0056b3;
}

.program-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.program-details span {
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: center;
}

.program-details i {
    margin-left: 5px;
    color: #0056b3;
}

.program-link {
    display: inline-flex;
    align-items: center;
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.program-link:hover {
    color: #003d7a;
}

.program-link i {
    margin-right: 5px;
    transition: transform 0.3s;
}

.program-link:hover i {
    transform: translateX(-5px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0056b3, #003d7a);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px 20px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Updates Section */
.updates-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.update-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.update-card:hover {
    transform: translateY(-5px);
}

.update-date {
    padding: 15px 20px;
    background: #0056b3;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.update-date i {
    margin-left: 8px;
}

.update-content {
    padding: 25px;
}

.update-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0056b3;
}

.update-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.update-link {
    display: inline-flex;
    align-items: center;
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
}

.update-link:hover {
    text-decoration: underline;
}

.update-link i {
    margin-right: 5px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(0,86,179,0.1);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 15px;
    border: 3px solid #0056b3;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #0056b3;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-container:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: #0056b3;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: left;
}

.step:nth-child(even) {
    text-align: right;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0056b3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0 20px;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-content h3 {
    font-size: 1.3rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .steps-container:before {
        display: none;
    }
    
    .step, .step:nth-child(odd) {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #0056b3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Responsive Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    flex: 1;
    min-width: 300px;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #0056b3;
    outline: none;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    padding: 0 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #FF6B35;
    margin-left: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin: 0;
}

.footer-description {
    display: flex;
    align-items: center;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-description i {
    margin-left: 0.5rem;
    color: #FF6B35;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-title i {
    margin-left: 0.5rem;
    color: #FF6B35;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: white;
    transform: translateX(-5px);
}

.footer-links a i {
    margin-left: 0.8rem;
    color: #FF6B35;
    width: 20px;
    text-align: center;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-left: 0.8rem;
    color: #FF6B35;
    width: 20px;
    text-align: center;
}

.contact-info span {
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FF6B35;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright {
    text-align: center;
    margin-bottom: 1rem;
}

.copyright p {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.copyright i {
    margin-left: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        padding: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-section {
        padding: 5rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        padding: 0.5rem 0;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }
    
    body {
        font-size: 12pt;
        background: none;
        color: #000;
    }
    
    .container {
        width: 100%;
        padding: 0;
    }
}

/* Navigation Styles */
/* Desktop View */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
        gap: 5px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-links .nav-link {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 12px 20px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-links .nav-link i {
        margin-left: 8px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .nav-links .nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    .nav-links .nav-link:hover i {
        transform: scale(1.2);
        color: #ffd700;
    }

    .nav-links .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
    }

    .nav-links .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 20px;
        width: calc(100% - 40px);
        height: 3px;
        background: #ffd700;
        border-radius: 3px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 10px;
    }

    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .hamburger {
        display: block;
        width: 24px;
        height: 2px;
        background: white;
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: white;
        right: 0;
        transition: all 0.3s ease;
    }

    .hamburger::before {
        top: -6px;
    }

    .hamburger::after {
        bottom: -6px;
    }

    .nav-toggle.open .hamburger {
        background: transparent;
    }

    .nav-toggle.open .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle.open .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #0056b3 0%, #003d7a 100%);
        padding: 25px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-navigation.active {
        right: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        margin-bottom: 10px;
    }

    .nav-links .nav-link {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        padding: 15px 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-links .nav-link i {
        margin-left: 12px;
        font-size: 1.3rem;
        min-width: 24px;
        text-align: center;
        color: #ffd700;
    }

    .nav-links .nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(-5px);
    }

    .nav-links .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-right: 4px solid #ffd700;
    }
}

/* Visually hide elements but keep them accessible */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Eligibility Page Styles */
.eligibility-section {
    padding: 3rem 10;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.eligibility-card, .form-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.eligibility-card:hover, .form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.eligibility-card h2, .form-card h2 {
    color: #0056b3;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.eligibility-card h2 i, .form-card h2 i {
    margin-left: 10px;
    color: #FF6B35;
}

.criteria-list, .steps-list {
    list-style: none;
    padding: 0;
}

.criteria-list li, .steps-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.criteria-list li:last-child, .steps-list li:last-child {
    border-bottom: none;
}

.criteria-list li i, .steps-list li i {
    margin-left: 10px;
    color: #28a745;
    min-width: 25px;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #0056b3;
    font-size: 1.2rem;
}

.check-eligibility-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.check-eligibility-box h3 {
    margin-top: 0;
    color: #0056b3;
    display: flex;
    align-items: center;
}

.check-eligibility-box h3 i {
    margin-left: 10px;
    color: #FF6B35;
}

.form-group label {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.form-group label i {
    margin-left: 8px;
    color: #0056b3;
}

.btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
    
    .eligibility-content {
        order: 2;
    }
    
    .eligibility-form {
        order: 1;
    }
}

@media (max-width: 576px) {
    .eligibility-card, .form-card {
        padding: 1.5rem;
    }
}

.page-header {
    padding-top: 3rem;  /* Adds space above the title */
    padding-bottom: 2rem; /* Maintains existing bottom padding */
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-title {
    font-weight: 700;
    color: #0056b3;
}

.modal-body {
    padding: 2rem;
}

.modal-body i {
    margin-bottom: 1rem;
}

.modal-footer {
    border-top: none;
    padding-top: 0;
}

/* Form Validation */
input:invalid {
    border-color: #dc3545;
}

input:valid {
    border-color: #28a745;
}

/* About Page Styles */
.about-section {
    padding: 3rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text h2, 
.objectives-section h2,
.performance-section h2,
.timeline-section h2,
.schemes-section h2,
.section-header h2 {
    color: #0056b3;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text h2 i,
.objectives-section h2 i,
.performance-section h2 i,
.timeline-section h2 i,
.schemes-section h2 i,
.section-header h2 i {
    color: #FF6B35;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.objective-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.objective-card i {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 1rem;
    background: rgba(0,86,179,0.1);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.objective-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #0056b3;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.stat-number span {
    font-size: 1rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.stat-icon {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 3rem;
    opacity: 0.1;
    color: #0056b3;
}

.timeline {
    position: relative;
    margin: 2rem 0;
    padding-right: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 2px;
    background: #0056b3;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-year {
    position: absolute;
    right: 0;
    top: 0;
    background: #0056b3;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    margin-right: 50px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.timeline-content h3 {
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.scheme-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.scheme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.scheme-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,86,179,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.scheme-icon i {
    font-size: 1.5rem;
    color: #0056b3;
}

.scheme-card h3 {
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.scheme-link {
    display: inline-flex;
    align-items: center;
    color: #FF6B35;
    text-decoration: none;
    margin-top: 1rem;
    gap: 5px;
}

.scheme-link i {
    transition: transform 0.3s ease;
}

.scheme-link:hover i {
    transform: translateX(-5px);
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header p {
    color: #666;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: right;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-content {
        margin-right: 40px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .schemes-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        right: 10px;
    }
    
    .timeline-content {
        margin-right: 30px;
    }
    
    .faq-question {
        padding: 1rem;
    }
}

/* Registration Page Styles */
.registration-section {
    padding: 3rem 0;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.section-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.section-card h2 {
    color: #0056b3;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.section-card h2 i {
    margin-left: 10px;
    color: #FF6B35;
}

/* Steps Styles */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #0056b3;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Documents List */
.documents-list {
    list-style: none;
    padding: 0;
}

.documents-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.documents-list li:last-child {
    border-bottom: none;
}

.documents-list li i {
    margin-left: 10px;
    color: #28a745;
    min-width: 25px;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #0056b3;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.faq-item h3 i {
    margin-left: 10px;
    color: #FF6B35;
}

/* Form Styles */
.center-form {
    margin-top: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group label i {
    margin-left: 8px;
    color: #0056b3;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .registration-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-steps {
        order: 2;
    }
    
    .registration-info {
        order: 1;
    }
}

@media (max-width: 576px) {
    .section-card {
        padding: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-icon {
        margin-bottom: 0.5rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.section-title {
    color: #0056b3;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #FF6B35;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    text-align: right;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #2d3748;
    transition: all 0.3s ease;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.question-icon {
    color: #FF6B35;
    font-size: 1.1rem;
}

.question-text {
    font-weight: 600;
}

.chevron-icon {
    color: #0056b3;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
    color: #FF6B35;
}

.faq-question:hover, 
.faq-question:focus {
    background: #f1f5f9;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
}

.faq-list {
    padding-right: 20px;
    margin-top: 1rem;
}

.faq-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.faq-list i {
    color: #0056b3;
    min-width: 20px;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.faq-answer strong {
    color: #2d3748;
}

.faq-answer a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.faq-answer a:hover {
    color: #003d7a;
    text-decoration: underline;
}

/* Active State */
.faq-question[aria-expanded="true"] {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem;
    }

}

/* Contact Page Styles */
.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-card, .contact-info-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-form-card h2, .contact-info-card h2 {
    color: #0056b3;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
    outline: none;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    font-size: 1.2rem;
    color: #FF6B35;
    margin-top: 3px;
}

.info-content h3 {
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.info-content a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #003d7a;
    text-decoration: underline;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    color: #FF6B35 !important;
}

/* Regional Offices */
.regional-offices {
    padding: 3rem 0;
    background: #f8f9fa;
}

.section-title {
    color: #0056b3;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.office-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.office-card h3 {
    color: #0056b3;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-details {
    color: #555;
    line-height: 1.6;
}

.office-details strong {
    color: #333;
}

.office-details a {
    color: #0056b3;
    text-decoration: none;
}

.office-details a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    border-top: 1px solid #e9ecef;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #0056b3;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.faq-section .section-title i {
    color: #FF6B35;
    font-size: 1.5rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.faq-question {
    width: 100%;
    text-align: right;
    background: #fff;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    color: #0056b3;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #0056b3;
}

.faq-question:hover {
    background: #f1f7ff;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.question-icon {
    color: #FF6B35;
    font-size: 1.2rem;
}

.question-text {
    font-weight: 600;
}

.chevron-icon {
    color: #0056b3;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-answer {
    background: #fff;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-content {
    padding: 0 0 1.5rem;
}

.faq-answer p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-list {
    padding-right: 1.5rem;
    margin: 1rem 0;
    list-style: none;
}

.faq-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.faq-list li i {
    color: #FF6B35;
    margin-top: 3px;
    min-width: 20px;
}

.faq-list a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s;
}

.faq-list a:hover {
    color: #003d7a;
    text-decoration: underline;
}

/* Active State */
.faq-item.active .faq-question {
    background: #0056b3;
    color: #fff;
    border-left-color: #FF6B35;
}

.faq-item.active .faq-question .question-icon,
.faq-item.active .faq-question .chevron-icon {
    color: #fff;
}

.faq-item.active .chevron-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem;
    border-top: 1px solid #e9ecef;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section .section-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 0 1rem;
    }
    
    .faq-list {
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-question-content {
        gap: 8px;
    }
    
    .question-icon {
        font-size: 1rem;
    }
    
    .faq-answer p, 
    .faq-list li {
        font-size: 0.95rem;
    }
}

/* Programs Updates Page */
.programs-updates {
    padding: 3rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
}

.section-header h2 {
    color: #0056b3;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin: 0;
}

.section-header h2 i {
    margin-left: 10px;
}

.view-all {
    color: #FF6B35;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: #E05E2D;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.news-date i {
    margin-left: 5px;
}

.news-card h3 {
    color: #343a40;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.news-card p {
    color: #495057;
    margin-bottom: 1rem;
}

.read-more {
    color: #0056b3;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-right: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #003d7a;
}

.read-more:hover i {
    transform: translateX(-3px);
}

/* Sidebar Styles */
.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    color: #0056b3;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.sidebar-widget h3 i {
    margin-left: 8px;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: #495057;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.sidebar-widget a i {
    margin-left: 8px;
    color: #FF6B35;
}

.sidebar-widget a:hover {
    color: #0056b3;
    transform: translateX(-5px);
}

/* Province Tabs */
.province-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 1rem;
}

.tab-btn {
    padding: 5px 10px;
    background: #f8f9fa;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn.active {
    background: #0056b3;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: #f8f9fa;
    border: none;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question i {
    transition: all 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 2rem;
}

.pagination a {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #0056b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover, .pagination .page-active {
    background: #0056b3;
    color: white;
    border-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .province-tabs {
        justify-content: center;
    }
}