:root {
            --sku-primary: #1a365d;
            --sku-secondary: #c53030;
            --sku-accent: #ecc94b;
            --sku-light: #f7fafc;
            --sku-dark: #2d3748;
            --sku-gray: #718096;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--sku-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Source Serif Pro', serif;
            font-weight: 600;
            color: var(--sku-primary);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        .section-padding {
            padding: 100px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--sku-secondary);
        }
        .section-title.center-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background-color: rgba(197, 48, 48, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--sku-secondary);
            font-size: 32px;
        }
        .nav-link {
            font-weight: 500;
            padding: 10px 20px !important;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(197, 48, 48, 0.1);
            color: var(--sku-secondary) !important;
        }
        .btn-sku-primary {
            background-color: var(--sku-primary);
            color: white;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--sku-primary);
        }
        .btn-sku-primary:hover {
            background-color: transparent;
            color: var(--sku-primary);
        }
        .btn-sku-secondary {
            background-color: var(--sku-secondary);
            color: white;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--sku-secondary);
        }
        .btn-sku-secondary:hover {
            background-color: transparent;
            color: var(--sku-secondary);
        }
        footer {
            background-color: var(--sku-primary);
            color: rgba(255, 255, 255, 0.8);
            padding-top: 80px;
        }
        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--sku-secondary);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            margin-top: 60px;
        }
        .flink {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 12px 20px;
            margin-bottom: 15px;
            transition: all 0.3s;
            border: 1px solid transparent;
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }
        .flink:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--sku-accent);
            color: white;
            transform: translateY(-3px);
        }
        .stats-box {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s;
        }
        .stats-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--sku-secondary);
            line-height: 1;
            margin-bottom: 10px;
        }
        .news-card {
            border-left: 4px solid var(--sku-secondary);
            padding-left: 20px;
        }
        .news-date {
            font-size: 0.875rem;
            color: var(--sku-gray);
            margin-bottom: 8px;
        }
        .campus-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s;
        }
        .campus-img:hover {
            transform: scale(1.03);
        }
        .faculty-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 80px;
            }
            .section-padding {
                padding: 60px 0;
            }
            .section-title {
                margin-bottom: 30px;
            }
        }
