:root {
            --primary-blue: #1e3a8a;
            --secondary-green: #16a085;
            --accent-gold: #f39c12;
            --light-gray: #f8f9fa;
            --dark-gray: #2c3e50;
            --text-muted: #6c757d;
            --deaf-theme: #4a90e2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
        }
        
        /* Accessibility improvements */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        
        /* Skip to main content for screen readers */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--primary-blue);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 1000;
        }
        
        .skip-link:focus {
            top: 6px;
        }
        
        /* Header Styles */
        .header-top {
            background: var(--primary-blue);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand img {
            height: 60px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark-gray) !important;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-blue) !important;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.05)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
            color: white;
            padding: 100px 0;
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="700" r="80" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .breadcrumb {
            background: rgba(255,255,255,0.1);
            padding: 10px 15px;
            border-radius: 25px;
            margin-bottom: 2rem;
        }
        
        .breadcrumb-item a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        /* Content Sections */
        .content-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            width: 60px;
            height: 4px;
            background: var(--accent-gold);
            position: absolute;
            bottom: -10px;
            left: 0;
        }
        
        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
        }
        
        /* Mission Vision Values */
        .mvv-card {
            background: white;
            border-radius: 15px;
            padding: 3rem 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
            text-align: center;
        }
        
        .mvv-card:hover {
            transform: translateY(-5px);
        }
        
        .mvv-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 2rem;
            color: white;
        }
        
        .mission-icon {
            background: var(--primary-blue);
        }
        
        .vision-icon {
            background: var(--secondary-green);
        }
        
        .values-icon {
            background: var(--accent-gold);
        }
        
        .mvv-card h4 {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--secondary-green);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: var(--accent-gold);
            border: 4px solid var(--secondary-green);
            top: 30px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-item:nth-child(even)::after {
            left: -10px;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .timeline-year {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        /* Staff Section */
        .staff-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 2rem;
        }
        
        .staff-card:hover {
            transform: translateY(-5px);
        }
        
        .staff-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 2rem auto 1rem;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary-blue);
        }
        
        .staff-card .card-body {
            padding: 1rem 2rem 2rem;
            text-align: center;
        }
        
        .staff-name {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .staff-title {
            color: var(--secondary-green);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        /* Statistics */
        .stat-highlight {
            background: var(--light-gray);
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--dark-gray);
            font-weight: 500;
        }
        
        /* Support Services */
        .service-item {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: flex-start;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .service-content h5 {
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        
        /* Call to Action */
        .cta-section {
            background: var(--primary-blue);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .btn-cta {
            background: var(--accent-gold);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 0 10px 10px;
        }
        
        .btn-cta:hover {
            background: #e67e22;
            transform: translateY(-2px);
            color: white;
        }
        
        .btn-outline-cta {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 13px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 0 10px 10px;
        }
        
        .btn-outline-cta:hover {
            background: white;
            color: var(--primary-blue);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::before {
                left: 60px;
                border: medium solid white;
                border-width: 10px 10px 10px 0;
                border-color: transparent white transparent transparent;
            }
            
            .timeline-item:nth-child(even) {
                left: 0%;
            }
            
            .timeline-item::after {
                left: 21px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-item {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                margin: 0 auto 1rem;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero .lead {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .btn-hero {
            background: var(--accent-gold);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
        }
        
        .btn-hero:hover {
            background: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            color: white;
        }
        
        .btn-outline-hero {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 13px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-outline-hero:hover {
            background: white;
            color: var(--primary-blue);
            transform: translateY(-2px);
        }
        
        /* Stats Section */
        .stats {
            background: var(--light-gray);
            padding: 80px 0;
        }
        
        .stat-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 2rem;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--dark-gray);
            font-weight: 500;
        }
        
        /* Programs Section */
        .programs {
            padding: 100px 0;
        }
        
        .program-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .program-card:hover {
            transform: translateY(-5px);
        }
        
        .program-icon {
            background: var(--secondary-green);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 2rem auto 1rem;
        }
        
        .program-card .card-body {
            padding: 2rem;
            text-align: center;
        }
        
        .program-card h5 {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* Achievements Section */
        .achievements {
            background: var(--primary-blue);
            color: white;
            padding: 100px 0;
        }
        
        .achievement-item {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .achievement-icon {
            background: var(--accent-gold);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }
        
        /* News Section */
        .news {
            padding: 100px 0;
            background: var(--light-gray);
        }
        
        .news-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
        }
        
        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .news-date {
            color: var(--secondary-green);
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Footer */
        .footer {
            background: var(--dark-gray);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }
        
        .footer .list-unstyled li {
            margin-bottom: 0.5rem;
        }
        
        .footer .list-unstyled a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer .list-unstyled a:hover {
            color: var(--accent-gold);
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--accent-gold);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .lead {
                font-size: 1.1rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
    
        
        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --primary-blue: #000080;
                --secondary-green: #006400;
                --dark-gray: #000000;
            }
        }
        
        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }