:root {
            --soa-blue: #003366;
            --soa-gold: #D4AF37;
            --soa-light: #F8F9FA;
            --soa-dark: #212529;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--soa-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--soa-blue);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 2px 15px rgba(0, 51, 102, 0.1);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
            transition: var(--transition);
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--soa-blue) !important;
            font-size: 1.8rem;
        }
        .navbar-brand span {
            color: var(--soa-gold);
        }
        .nav-link {
            font-weight: 600;
            color: var(--soa-blue) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            background-color: var(--soa-blue);
            color: white !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(212, 175, 55, 0.8)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            margin-bottom: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--soa-gold);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--soa-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
        }
        .stats-box {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background: var(--soa-light);
            transition: var(--transition);
        }
        .stats-box:hover {
            background: var(--soa-blue);
            color: white;
        }
        .stats-box:hover .stats-number {
            color: var(--soa-gold);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--soa-blue);
            display: block;
            line-height: 1;
        }
        .campus-life-img {
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            transition: var(--transition);
        }
        .campus-life-img:hover {
            transform: scale(1.03);
        }
        .footer {
            background-color: var(--soa-blue);
            color: rgba(255, 255, 255, 0.85);
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        .footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--soa-gold);
        }
        .footer a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--soa-gold);
            padding-left: 5px;
        }
        .footer .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin: 0.3rem;
            transition: var(--transition);
        }
        .footer .flink:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .btn-soa {
            background-color: var(--soa-blue);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 5px;
            font-weight: 600;
            border: 2px solid var(--soa-blue);
            transition: var(--transition);
        }
        .btn-soa:hover {
            background-color: transparent;
            color: var(--soa-blue);
            border-color: var(--soa-blue);
        }
        .btn-soa-outline {
            background-color: transparent;
            color: var(--soa-blue);
            border: 2px solid var(--soa-blue);
            padding: 0.75rem 2rem;
            border-radius: 5px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-soa-outline:hover {
            background-color: var(--soa-blue);
            color: white;
        }
        .academic-department {
            border-left: 4px solid var(--soa-gold);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
        .news-card {
            border-left: 5px solid var(--soa-blue);
        }
        .contact-info-box {
            background: var(--soa-light);
            padding: 2rem;
            border-radius: 10px;
            height: 100%;
            border-top: 4px solid var(--soa-gold);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
        .marquee {
            background: var(--soa-gold);
            color: var(--soa-blue);
            padding: 0.8rem;
            font-weight: 600;
            overflow: hidden;
        }
        .flink-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 1rem;
        }
