:root {
            --mahe-blue: #0056a6;
            --mahe-gold: #d4af37;
            --mahe-light: #f8f9fa;
            --mahe-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .bg-mahe-blue {
            background-color: var(--mahe-blue) !important;
        }
        .text-mahe-gold {
            color: var(--mahe-gold) !important;
        }
        .btn-primary {
            background-color: var(--mahe-blue);
            border-color: var(--mahe-blue);
        }
        .btn-primary:hover {
            background-color: #004080;
            border-color: #004080;
        }
        .btn-outline-primary {
            color: var(--mahe-blue);
            border-color: var(--mahe-blue);
        }
        .btn-outline-primary:hover {
            background-color: var(--mahe-blue);
            border-color: var(--mahe-blue);
        }
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }
        .navbar-brand img {
            height: 60px;
            transition: height 0.3s;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 166, 0.85), rgba(0, 64, 128, 0.9)), 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/cover;
            color: white;
            padding: 120px 0 100px;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--mahe-gold);
        }
        .section-title.text-start:after {
            left: 0;
            transform: none;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(0, 86, 166, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--mahe-blue);
            font-size: 30px;
        }
        .stats-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
        }
        .stats-box:hover {
            background: var(--mahe-blue);
            color: white;
        }
        .stats-box:hover h3,
        .stats-box:hover p {
            color: white;
        }
        .campus-life-img {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.5s;
        }
        .campus-life-img:hover {
            transform: scale(1.03);
        }
        .news-card {
            border-left: 4px solid var(--mahe-blue);
            transition: all 0.3s;
        }
        .news-card:hover {
            border-left-color: var(--mahe-gold);
            background-color: #f8f9fa;
        }
        footer {
            background-color: #1a1a1a;
            color: #ccc;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            transition: all 0.3s;
            color: #ddd;
            text-decoration: none;
        }
        .flink:hover {
            background: rgba(255,255,255,0.2);
            color: white;
            transform: translateY(-3px);
        }
        .friendlink {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 60px;
            }
            .navbar-brand img {
                height: 50px;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
