/* About Us */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

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

        /* Header and Navigation */
        .top-bar {
            background-color: #1a3a6c;
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
        }

        .skip-link {
            position: absolute;
            left: -10000px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .skip-link:focus {
            position: static;
            width: auto;
            height: auto;
        }

        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a3a6c;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: #e63946;
        }

        .logo span {
            color: #e63946;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #1a3a6c;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #1a3a6c;
            cursor: pointer;
        }

        /* About Us Hero */
        .about-hero {
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }

        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        /* Mission Vision Section */
        .mission-vision {
            padding: 100px 0;
            background-color: white;
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .mission-card, .vision-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
        }

        .mission-card h2, .vision-card h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #1a3a6c;
            display: flex;
            align-items: center;
        }

        .mission-card h2 i, .vision-card h2 i {
            margin-right: 15px;
            color: #e63946;
        }

        .mission-card p, .vision-card p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-card {
            padding: 30px;
        }

        .stat-card h3 {
            font-size: 3.5rem;
            margin-bottom: 10px;
            color: #e63946;
            font-weight: 700;
        }

        .stat-card p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Leadership Section */
        .leadership {
            padding: 100px 0;
            background-color: #f1f5f9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #1a3a6c;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

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

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .leader-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .leader-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .leader-img {
            height: 280px;
            overflow: hidden;
        }

        .leader-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .leader-card:hover .leader-img img {
            transform: scale(1.05);
        }

        .leader-info {
            padding: 25px;
        }

        .leader-info h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #1a3a6c;
        }

        .leader-info .title {
            color: #e63946;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .leader-info p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* History Timeline */
        .history {
            padding: 100px 0;
            background-color: white;
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background-color: #1a3a6c;
        }

        .timeline-item {
            margin-bottom: 60px;
            position: relative;
            width: 50%;
            padding-right: 40px;
        }

        .timeline-item:nth-child(even) {
            margin-left: 50%;
            padding-right: 0;
            padding-left: 40px;
        }

        .timeline-dot {
            position: absolute;
            top: 0;
            right: -12px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #e63946;
            border: 4px solid #1a3a6c;
            z-index: 1;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            right: auto;
            left: -12px;
        }

        .timeline-content {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .timeline-year {
            display: inline-block;
            background-color: #1a3a6c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .timeline-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #333;
        }

        .timeline-content p {
            color: #666;
        }

        /* Values Section */
        .values {
            padding: 100px 0;
            background-color: #f1f5f9;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .value-card {
            background-color: white;
            border-radius: 10px;
            padding: 35px 30px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .value-card:hover {
            transform: translateY(-10px);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background-color: #1a3a6c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .value-icon i {
            font-size: 2rem;
            color: white;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .value-card p {
            color: #666;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button.secondary {
            background-color: transparent;
            border: 2px solid white;
            margin-left: 15px;
        }

        .cta-button.secondary:hover {
            background-color: white;
            color: #1a3a6c;
        }

        /* Footer */
        footer {
            background-color: #0d1b36;
            color: white;
            padding: 60px 0 30px;
        }

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

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #e63946;
        }

        .footer-column p {
            color: #b0b7c3;
            margin-bottom: 20px;
        }

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

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: white;
            padding-left: 5px;
        }

        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-info li i {
            margin-right: 10px;
            color: #e63946;
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: #e63946;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b7c3;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .leadership-grid, .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 140px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s;
                z-index: 999;
            }

            nav ul.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            nav ul li {
                margin: 15px 0;
            }




            .timeline:before {
                left: 20px;
            }
            
            .timeline-item {
                width: 100%;
                padding-right: 0;
                padding-left: 50px;
            }
            
            .timeline-item:nth-child(even) {
                margin-left: 0;
                padding-left: 50px;
            }
            
            .timeline-dot {
                left: 8px !important;
                right: auto !important;
            }
            
            .about-hero {
                padding: 90px 0 60px;
            }
            
            .about-hero h1 {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .leadership-grid, .values-grid {
                grid-template-columns: 1fr;
            }
            
            .about-hero {
                padding: 70px 0 40px;
            }
            
            .cta-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .cta-button.secondary {
                margin-left: 0;
            }
            
            .mission-card, .vision-card {
                padding: 25px;
            }
        }

/* Apply Now */

        nav ul li a.active {
            color: #e63946;
        }


        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .breadcrumb {
            margin-top: 20px;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
        }

        .breadcrumb a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .breadcrumb span {
            margin: 0 10px;
        }

        /* Apply Section */
        .apply-section {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #1a3a6c;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .apply-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        /* Application Form */
        .application-form-container {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .form-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #1a3a6c;
        }

        .required-note {
            color: #e63946;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: block;
        }

        .application-form .form-group {
            margin-bottom: 20px;
        }

        .application-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .application-form label .required {
            color: #e63946;
        }

        .application-form input,
        .application-form select,
        .application-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .application-form input:focus,
        .application-form select:focus,
        .application-form textarea:focus {
            outline: none;
            border-color: #1a3a6c;
            box-shadow: 0 0 0 2px rgba(26, 58, 108, 0.1);
        }

        .application-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .cta-button {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button.secondary {
            background-color: #1a3a6c;
        }

        .cta-button.secondary:hover {
            background-color: #0d1b36;
        }

        .form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        /* Admission Info */
        .admission-info-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 5px solid #1a3a6c;
            transition: transform 0.3s;
        }

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

        .info-card i {
            font-size: 2rem;
            color: #1a3a6c;
            margin-bottom: 20px;
        }

        .info-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .info-card p {
            color: #666;
            margin-bottom: 10px;
        }

        .info-card ul {
            list-style-position: inside;
            margin-top: 10px;
            color: #666;
        }

        .info-card li {
            margin-bottom: 8px;
            padding-left: 5px;
        }

        /* Admission Requirements */
        .requirements-section {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .requirements-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            border-bottom: 1px solid #ddd;
        }

        .tab-button {
            padding: 15px 30px;
            background: none;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .tab-button:hover {
            color: #1a3a6c;
        }

        .tab-button.active {
            color: #1a3a6c;
        }

        .tab-button.active:after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #e63946;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .requirements-list {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .requirements-list h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: #1a3a6c;
        }

        .requirements-list ul {
            list-style: none;
        }

        .requirements-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            color: #555;
        }

        .requirements-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #e63946;
            font-weight: bold;
        }

        /* Application Steps */
        .steps-section {
            padding: 80px 0;
            background-color: white;
        }

        .steps-timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .steps-timeline:before {
            content: '';
            position: absolute;
            top: 0;
            left: 50px;
            width: 4px;
            height: 100%;
            background-color: #1a3a6c;
        }

        .step-item {
            display: flex;
            margin-bottom: 50px;
            position: relative;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background-color: #1a3a6c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-right: 40px;
            flex-shrink: 0;
            z-index: 1;
        }

        .step-content {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            flex-grow: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .step-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #333;
        }

        .step-content p {
            color: #666;
        }

        /* Deadlines Section */
        .deadlines-section {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .deadlines-table {
            width: 100%;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .deadlines-table th,
        .deadlines-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .deadlines-table th {
            background-color: #1a3a6c;
            color: white;
            font-weight: 600;
        }

        .deadlines-table tr:last-child td {
            border-bottom: none;
        }

        .deadlines-table tr:hover {
            background-color: #f8f9fa;
        }

        .deadline-tag {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .deadline-tag.regular {
            background-color: #d4edda;
            color: #155724;
        }

        .deadline-tag.priority {
            background-color: #fff3cd;
            color: #856404;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        /* Footer */


        /* Responsive Design */
        @media (max-width: 992px) {
            .apply-container {
                grid-template-columns: 1fr;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .steps-timeline:before {
                left: 40px;
            }
            
            .step-number {
                width: 80px;
                height: 80px;
                font-size: 1.5rem;
                margin-right: 30px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }



            .form-row {
                grid-template-columns: 1fr;
            }
            
            .form-actions {
                flex-direction: column;
                gap: 15px;
            }
            
            .page-header {
                padding: 60px 0;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
            
            .requirements-tabs {
                flex-direction: column;
            }
            
            .tab-button {
                border-bottom: 1px solid #eee;
            }
            
            .steps-timeline:before {
                display: none;
            }
            
            .step-item {
                flex-direction: column;
            }
            
            .step-number {
                margin-bottom: 20px;
            }
            
            .deadlines-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .page-header {
                padding: 40px 0;
            }
            
            .application-form-container {
                padding: 25px;
            }
            
            .info-card {
                padding: 20px;
            }
        }

/* Admissions */

        /* Breadcrumb */
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 20px 0;
            margin-top: 10px;
        }

        .breadcrumb ul {
            display: flex;
            list-style: none;
        }

        .breadcrumb ul li {
            margin-right: 10px;
            font-size: 0.95rem;
        }

        .breadcrumb ul li:after {
            content: "/";
            margin-left: 10px;
            color: #777;
        }

        .breadcrumb ul li:last-child:after {
            content: "";
        }

        .breadcrumb ul li a {
            color: #1a3a6c;
            text-decoration: none;
        }

        .breadcrumb ul li a:hover {
            text-decoration: underline;
        }

        /* Page Hero */
        .page-hero {
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
            line-height: 1.8;
        }

        /* Admissions Intro */
        .admissions-intro {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #1a3a6c;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

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

        /* Application Process */
        .application-process {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .process-steps {
            max-width: 900px;
            margin: 0 auto;
        }

        .step {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            transition: transform 0.3s;
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            background-color: #1a3a6c;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-right: 25px;
            flex-shrink: 0;
        }

        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a3a6c;
        }

        .step-content p {
            color: #666;
            font-size: 1.05rem;
        }

        /* Requirements & Deadlines */
        .requirements {
            padding: 80px 0;
            background-color: white;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .req-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 35px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 4px solid #1a3a6c;
        }

        .req-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #1a3a6c;
        }

        .req-card ul {
            list-style: none;
            margin-bottom: 25px;
        }

        .req-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid #eaeaea;
            color: #555;
            display: flex;
            align-items: center;
        }

        .req-card ul li:before {
            content: "✓";
            color: #e63946;
            font-weight: bold;
            margin-right: 10px;
        }

        .deadline-note {
            background-color: #fff8e6;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin-top: 25px;
            border-radius: 4px;
        }

        .deadline-note p {
            color: #856404;
            font-size: 1rem;
            margin: 0;
        }

        /* Scholarships */
        .scholarships {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .scholarship-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .scholarship-card {
            background-color: white;
            border-radius: 8px;
            padding: 35px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .scholarship-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .scholarship-icon {
            width: 70px;
            height: 70px;
            background-color: #1a3a6c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .scholarship-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .scholarship-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #333;
        }

        .scholarship-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .aid-note {
            text-align: center;
            margin-top: 40px;
            font-size: 1.1rem;
            color: #555;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(rgba(230, 57, 70, 0.9), rgba(193, 18, 31, 0.9));
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            background-color: white;
            color: #e63946;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Footer */


        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }



            .page-hero {
                padding: 70px 0;
            }

            .page-hero h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
            
            .step {
                flex-direction: column;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .cta-section h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .page-hero {
                padding: 50px 0;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .page-hero p {
                font-size: 1.1rem;
            }
            
            .requirements-grid {
                grid-template-columns: 1fr;
            }
            
            .req-card {
                padding: 25px;
            }
        }

/* Contact Us */


        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }



        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #1a3a6c;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        /* Contact Form */
        .contact-form-container {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .form-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #1a3a6c;
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #1a3a6c;
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .cta-button {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Contact Info */
        .contact-info-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 5px solid #1a3a6c;
            transition: transform 0.3s;
        }

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

        .info-card i {
            font-size: 2rem;
            color: #1a3a6c;
            margin-bottom: 20px;
        }

        .info-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .info-card p {
            color: #666;
            margin-bottom: 10px;
        }

        .info-card a {
            color: #1a3a6c;
            text-decoration: none;
            font-weight: 600;
        }

        .info-card a:hover {
            color: #e63946;
            text-decoration: underline;
        }

        /* Contact Details */
        .contact-details {
            background-color: #f1f5f9;
            padding: 80px 0;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .detail-item {
            text-align: center;
            padding: 30px;
        }

        .detail-icon {
            width: 70px;
            height: 70px;
            background-color: #1a3a6c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .detail-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .detail-item h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #333;
        }

        .detail-item p {
            color: #666;
            margin-bottom: 10px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background-color: #f8f9fa;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: #f1f5f9;
        }

        .faq-question i {
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        /* Map Section */
        .map-section {
            padding: 0 0 80px;
        }

        .map-container {
            height: 450px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background-color: #eaeaea;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #666;
        }

        .map-placeholder i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #1a3a6c;
        }

        /* Footer */


        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }



            .form-row {
                grid-template-columns: 1fr;
            }
            
            .page-header {
                padding: 60px 0;
            }

            .page-header h1 {
                font-size: 2rem;
            }

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

        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .page-header {
                padding: 40px 0;
            }
            
            .contact-form-container {
                padding: 25px;
            }
            
            .info-card {
                padding: 20px;
            }
        }


/* News & Events */












        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }



        nav ul li a.active:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #e63946;
        }

        nav ul li a:hover {
            color: #1a3a6c;
        }



        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Page Title */
        .page-title {
            text-align: center;
            padding: 60px 0 40px;
            background-color: white;
        }

        .page-title h1 {
            font-size: 2.8rem;
            color: #1a3a6c;
            margin-bottom: 15px;
        }

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

        /* News Section */
        .news-section {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #1a3a6c;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .news-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 10px 25px;
            background-color: #f1f5f9;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-btn.active, .filter-btn:hover {
            background-color: #1a3a6c;
            color: white;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .news-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .news-card.featured {
            grid-column: 1 / -1;
            display: flex;
            flex-direction: row;
        }

        .news-img {
            height: 250px;
            overflow: hidden;
        }

        .news-card.featured .news-img {
            flex: 1;
            height: auto;
        }

        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .news-card:hover .news-img img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 25px;
            flex: 1;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .news-category {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

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

        .news-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a3a6c;
        }

        .news-content p {
            color: #666;
            margin-bottom: 20px;
        }

        .news-link {
            color: #e63946;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .news-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .news-link:hover i {
            transform: translateX(5px);
        }

        .view-all {
            text-align: center;
        }

        /* Events Calendar Section */
        .events-section {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .events-container {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
        }

        .events-sidebar {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }

        .events-sidebar h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #1a3a6c;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f5f9;
        }

        .event-filters {
            margin-bottom: 30px;
        }

        .event-filter-group {
            margin-bottom: 25px;
        }

        .event-filter-group h4 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #333;
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .filter-option {
            display: flex;
            align-items: center;
        }

        .filter-option input {
            margin-right: 10px;
        }

        .filter-option label {
            cursor: pointer;
        }

        .current-date-display {
            background-color: #1a3a6c;
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }

        .current-date-display .date {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .current-date-display .month-year {
            font-size: 1.2rem;
        }

        .events-main {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .calendar-header h3 {
            font-size: 1.8rem;
            color: #1a3a6c;
        }

        .calendar-nav {
            display: flex;
            gap: 10px;
        }

        .calendar-nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f1f5f9;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .calendar-nav-btn:hover {
            background-color: #1a3a6c;
            color: white;
        }

        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
            color: #1a3a6c;
        }

        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
        }

        .calendar-day {
            height: 80px;
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 10px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .calendar-day:hover {
            background-color: #e9ecef;
        }

        .calendar-day.active {
            background-color: #1a3a6c;
            color: white;
        }

        .calendar-day.today {
            border: 2px solid #e63946;
        }

        .calendar-day.has-event:after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background-color: #e63946;
            border-radius: 50%;
        }

        .calendar-day .day-number {
            font-weight: 600;
        }

        .calendar-day .event-count {
            position: absolute;
            bottom: 5px;
            right: 5px;
            background-color: #e63946;
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .day-events {
            margin-top: 40px;
        }

        .day-events h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #1a3a6c;
        }

        .event-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .event-item {
            padding: 20px;
            border-left: 4px solid #1a3a6c;
            background-color: #f8f9fa;
            border-radius: 0 8px 8px 0;
        }

        .event-time {
            display: inline-block;
            background-color: #1a3a6c;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .event-item h5 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #333;
        }

        .event-item p {
            color: #666;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .event-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .event-tag {
            background-color: #e63946;
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        /* Spotlight Section */
        .spotlight-section {
            padding: 80px 0;
            background-color: white;
        }

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

        .spotlight-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            transition: transform 0.3s;
            border-top: 4px solid #1a3a6c;
        }

        .spotlight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .spotlight-icon {
            width: 70px;
            height: 70px;
            background-color: #1a3a6c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .spotlight-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .spotlight-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .spotlight-card p {
            color: #666;
            margin-bottom: 20px;
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 80px 0;
            background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
        }

        .newsletter-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .newsletter-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 250px;
            padding: 15px;
            border-radius: 5px;
            border: none;
            font-size: 1rem;
        }

        /* Footer */


        /* Responsive Design */
        @media (max-width: 992px) {
            .events-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .news-card.featured {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }



            .hero {
                padding: 70px 0;
            }

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

            .section-title h2 {
                font-size: 2rem;
            }
            
            .page-title h1 {
                font-size: 2.2rem;
            }
            
            .calendar-days {
                gap: 5px;
            }
            
            .calendar-day {
                height: 60px;
                padding: 5px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .hero {
                padding: 50px 0;
            }
            
            .newsletter-section h2 {
                font-size: 2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                min-width: 100%;
            }
            
            .calendar-day {
                height: 50px;
            }
        }

/* index */

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Quick Links Section */
        .quick-links {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #1a3a6c;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .link-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #1a3a6c;
        }

        .link-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .link-card i {
            font-size: 2.5rem;
            color: #1a3a6c;
            margin-bottom: 20px;
        }

        .link-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .link-card p {
            color: #666;
            margin-bottom: 20px;
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #1a3a6c;
        }

        .about-text p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Programs Section */
        .programs {
            padding: 80px 0;
            background-color: white;
        }

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

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

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .program-img {
            height: 200px;
            overflow: hidden;
        }

        .program-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .program-content {
            padding: 25px;
        }

        .program-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a3a6c;
        }

        .program-content p {
            color: #666;
            margin-bottom: 20px;
        }

        .program-tag {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Why Choose Us Section */
        .why-choose {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .why-intro {
            text-align: center;
            margin-bottom: 50px;
        }

        .why-intro h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #1a3a6c;
        }

        .why-intro p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

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

        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: #1a3a6c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #333;
        }

        .feature-card p {
            color: #666;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background-color: white;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-slide {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: none;
        }

        .testimonial-slide.active {
            display: block;
            animation: fadeIn 0.8s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            color: #555;
            margin-bottom: 25px;
            position: relative;
        }

        .testimonial-text:before {
            content: "\201C";
            font-size: 4rem;
            color: #1a3a6c;
            opacity: 0.2;
            position: absolute;
            top: -30px;
            left: -10px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #666;
            font-size: 0.9rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .slider-dot.active {
            background-color: #1a3a6c;
        }

        /* News Section */
        .news {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

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

        .news-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

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

        .news-img {
            height: 200px;
            overflow: hidden;
        }

        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .news-card:hover .news-img img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 25px;
        }

        .news-date {
            display: inline-block;
            background-color: #1a3a6c;
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }

        .news-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #333;
        }

        .news-content p {
            color: #666;
            margin-bottom: 15px;
        }

        .news-link {
            color: #e63946;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .news-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .news-link:hover i {
            transform: translateX(5px);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        /* Footer */


        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }



            .hero {
                padding: 70px 0;
            }

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

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

        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .hero {
                padding: 50px 0;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }

/* programs */















        nav ul li a.active {
            color: #e63946;
            position: relative;
        }

        nav ul li a.active:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #e63946;
        }



        /* Hero Section */
        .programs-hero {
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }

        .programs-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .programs-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }



        /* Intro Section */
        .programs-intro {
            padding: 80px 0;
            background-color: white;
        }

        .intro-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .intro-content h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: #1a3a6c;
        }

        .intro-content p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #e63946;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #1a3a6c;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Featured Programs Section */
        .featured-programs {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #1a3a6c;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

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

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

        .program-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .program-img {
            height: 220px;
            overflow: hidden;
        }

        .program-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .program-card:hover .program-img img {
            transform: scale(1.05);
        }

        .program-content {
            padding: 30px;
        }

        .program-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .program-title h3 {
            font-size: 1.6rem;
            color: #1a3a6c;
            margin-bottom: 5px;
        }

        .program-type {
            display: inline-block;
            background-color: #1a3a6c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .program-details {
            margin-bottom: 25px;
        }

        .program-details p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .program-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }

        .feature {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #555;
        }

        .feature i {
            color: #e63946;
            margin-right: 8px;
            font-size: 1rem;
        }

        .cta-button {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .cta-button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* All Programs Section */
        .all-programs {
            padding: 80px 0;
            background-color: white;
        }

        .program-categories {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .category-btn {
            background-color: #f8f9fa;
            border: 2px solid #e9ecef;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            color: #555;
            cursor: pointer;
            transition: all 0.3s;
        }

        .category-btn:hover {
            background-color: #e9ecef;
        }

        .category-btn.active {
            background-color: #1a3a6c;
            color: white;
            border-color: #1a3a6c;
        }

        .program-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .program-item {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 25px;
            border-left: 4px solid #1a3a6c;
            transition: transform 0.3s;
        }

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

        .program-item h4 {
            font-size: 1.3rem;
            color: #1a3a6c;
            margin-bottom: 10px;
        }

        .program-item p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .program-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #777;
        }

        /* Application Process */
        .application-process {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            position: relative;
            flex-wrap: wrap;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #ddd;
            z-index: 1;
        }

        .step {
            position: relative;
            z-index: 2;
            text-align: center;
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: #1a3a6c;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
            border: 8px solid #f1f5f9;
        }

        .step-content h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #333;
        }

        .step-content p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Student Resources */
        .student-resources {
            padding: 80px 0;
            background-color: white;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .resource-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
        }

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

        .resource-icon {
            width: 70px;
            height: 70px;
            background-color: #1a3a6c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .resource-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .resource-card h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #333;
        }

        .resource-card p {
            color: #666;
            margin-bottom: 20px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            padding: 20px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a3a6c;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-answer.active {
            padding: 20px 30px;
            max-height: 500px;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

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

        .cta-button.secondary:hover {
            background-color: white;
            color: #1a3a6c;
        }

        /* Footer */


        /* Responsive Design */
        @media (max-width: 992px) {
            .process-steps:before {
                display: none;
            }
            
            .programs-hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }



            .programs-grid {
                grid-template-columns: 1fr;
            }
            
            .programs-hero {
                padding: 90px 0 60px;
            }
            
            .programs-hero h1 {
                font-size: 2.3rem;
            }
            
            .cta-section h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .stats {
                flex-direction: column;
                gap: 30px;
            }
            
            .programs-hero {
                padding: 70px 0 40px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .program-categories {
                flex-direction: column;
                align-items: center;
            }
        }
/* Campus Life */












        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }



        nav ul li a.active:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #e63946;
        }

        nav ul li a:hover {
            color: #1a3a6c;
        }



        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Page Title */
        .page-title {
            text-align: center;
            padding: 60px 0 40px;
            background-color: white;
        }

        .page-title h1 {
            font-size: 2.8rem;
            color: #1a3a6c;
            margin-bottom: 15px;
        }

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

        /* Campus Life Intro */
        .campus-intro {
            padding: 80px 0;
            background-color: white;
        }

        .campus-intro .container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .intro-text {
            flex: 1;
        }

        .intro-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #1a3a6c;
        }

        .intro-text p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 20px;
        }

        .intro-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .intro-image:hover img {
            transform: scale(1.05);
        }

        /* Campus Life Features */
        .campus-features {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #1a3a6c;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

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

        .feature-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-img {
            height: 200px;
            overflow: hidden;
        }

        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .feature-card:hover .feature-img img {
            transform: scale(1.05);
        }

        .feature-content {
            padding: 25px;
        }

        .feature-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a3a6c;
        }

        .feature-content p {
            color: #666;
            margin-bottom: 20px;
        }

        /* Student Organizations */
        .student-orgs {
            padding: 80px 0;
            background-color: white;
        }

        .orgs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .org-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #1a3a6c;
        }

        .org-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .org-card i {
            font-size: 2.5rem;
            color: #1a3a6c;
            margin-bottom: 20px;
        }

        .org-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .org-card p {
            color: #666;
            margin-bottom: 20px;
        }

        /* Campus Facilities */
        .campus-facilities {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

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

        .facility-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .facility-img {
            height: 200px;
            overflow: hidden;
        }

        .facility-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .facility-content {
            padding: 25px;
        }

        .facility-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a3a6c;
        }

        .facility-content p {
            color: #666;
            margin-bottom: 20px;
        }

        .facility-hours {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
        }

        .facility-hours h4 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .facility-hours p {
            margin-bottom: 5px;
            font-size: 0.95rem;
        }

        /* Events Calendar */
        .events-calendar {
            padding: 80px 0;
            background-color: white;
        }

        .calendar-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .calendar-header {
            background-color: #1a3a6c;
            color: white;
            padding: 20px;
            text-align: center;
        }

        .calendar-header h3 {
            font-size: 1.8rem;
        }

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

        .calendar-sidebar {
            background-color: #f8f9fa;
            padding: 30px;
        }

        .current-date {
            margin-bottom: 30px;
        }

        .current-date h4 {
            font-size: 1.5rem;
            color: #1a3a6c;
            margin-bottom: 10px;
        }

        .event-list {
            max-height: 400px;
            overflow-y: auto;
        }

        .event-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            transition: background-color 0.3s;
        }

        .event-item:hover {
            background-color: #e9ecef;
        }

        .event-date {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .event-item h5 {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 5px;
        }

        .event-item p {
            font-size: 0.9rem;
            color: #666;
        }

        .calendar-main {
            padding: 30px;
        }

        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }

        .day {
            text-align: center;
            font-weight: 600;
            color: #1a3a6c;
            padding: 10px 0;
        }

        .calendar-dates {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
        }

        .date {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .date:hover {
            background-color: #e9ecef;
        }

        .date.active {
            background-color: #1a3a6c;
            color: white;
        }

        .date.has-event {
            position: relative;
        }

        .date.has-event:after {
            content: '';
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 8px;
            height: 8px;
            background-color: #e63946;
            border-radius: 50%;
        }

        /* Student Voices */
        .student-voices {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

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

        .voice-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .voice-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .voice-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }

        .voice-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .voice-info h4 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 5px;
        }

        .voice-info p {
            color: #666;
            font-size: 0.9rem;
        }

        .voice-quote {
            font-style: italic;
            color: #555;
            position: relative;
            padding-left: 20px;
        }

        .voice-quote:before {
            content: '"';
            font-size: 3rem;
            color: #1a3a6c;
            opacity: 0.2;
            position: absolute;
            top: -15px;
            left: 0;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(rgba(26, 58, 108, 0.9), rgba(26, 58, 108, 0.9)), 
                        url('imgs/1/IMG-20260119-WA0123.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        /* Footer */


        /* Responsive Design */
        @media (max-width: 992px) {
            .campus-intro .container {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .calendar-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }



            .hero {
                padding: 70px 0;
            }

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

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

        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .hero {
                padding: 50px 0;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .calendar-dates {
                gap: 5px;
            }
            
            .date {
                height: 45px;
                font-size: 0.9rem;
            }
        }