:root {
            --primary-color: #0d47a1;
            --secondary-color: #1565c0;
            --accent-color: #e3f2fd;
            --dark-color: #002171;
            --light-color: #f8f9fa;
            --success-color: #2e7d32;
            --warning-color: #f57c00;
            --text-dark: #212529;
            --text-light: #6c757d;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand span {
            color: var(--warning-color);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(21, 101, 192, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }
        .card-img-top {
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            height: 200px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
            transform: translateY(-2px);
        }
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        .stat-box {
            text-align: center;
            padding: 2rem;
            border-radius: var(--border-radius);
            background-color: white;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        .stat-box:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }
        .campus-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        .campus-image:hover {
            transform: scale(1.02);
        }
        .campus-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .facility-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .facility-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--primary-color);
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 1.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--primary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-color);
        }
        .news-card {
            height: 100%;
            border-left: 4px solid var(--primary-color);
        }
        .testimonial-card {
            border-left: 4px solid var(--warning-color);
            padding-left: 1.5rem;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            background-color: var(--light-color);
            border-radius: 30px;
            color: var(--text-dark);
            text-decoration: none;
            margin: 5px;
            transition: var(--transition);
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
        }
        footer a {
            color: #bbdefb;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: var(--transition);
        }
        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 60px;
                margin-top: 66px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .section-title:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
            }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--dark-color);
            color: white;
            transform: translateY(-5px);
        }
