:root {
            --primary-blue: #0a4275;
            --secondary-teal: #0d9488;
            --accent-gold: #d4af37;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Source Serif Pro', serif;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-blue) !important;
            font-size: 1.8rem;
        }
        .navbar-brand span {
            color: var(--secondary-teal);
        }
        .nav-link {
            color: var(--primary-blue) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(10, 66, 117, 0.08);
            color: var(--secondary-teal) !important;
        }
        .navbar-toggler {
            border: 1px solid var(--primary-blue);
            padding: 0.5rem 0.75rem;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 66, 117, 0.85), rgba(13, 148, 136, 0.8)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2053&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background-color: var(--accent-gold);
            border-color: var(--accent-gold);
            color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #c19b2c;
            border-color: #c19b2c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .info-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .info-card-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
        }
        .info-card-body {
            padding: 1.5rem;
        }
        .info-card-title {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        .stats-counter {
            background-color: var(--primary-blue);
            color: white;
            padding: 4rem 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent-gold);
        }
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        .faculty-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin: 1rem;
        }
        .faculty-img {
            height: 280px;
            width: 100%;
            object-fit: cover;
        }
        .faculty-info {
            padding: 1.5rem;
        }
        .faculty-name {
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        .faculty-designation {
            color: var(--secondary-teal);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        .main-footer {
            background-color: #0d1b2a;
            color: #e0e1dd;
            padding: 4rem 0 2rem;
        }
        .footer-title {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .contact-icon {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        .footer-bottom {
            border-top: 1px solid #2d3748;
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: #adb5bd;
        }
        friendlink {
            display: block;
            margin-top: 2rem;
        }
        .flink-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        .flink {
            background-color: rgba(255, 255, 255, 0.05);
            color: #adb5bd;
            padding: 0.5rem 1.25rem;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            border: 1px solid #2d3748;
        }
        .flink:hover {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            border-color: var(--accent-gold);
        }
        .accordion-button {
            font-weight: 600;
            color: var(--primary-blue);
            background-color: rgba(10, 66, 117, 0.05);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 66, 117, 0.1);
            color: var(--primary-blue);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(10, 66, 117, 0.25);
        }
        @media (max-width: 992px) {
            .section-padding {
                padding: 3rem 0;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
                min-height: 70vh;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .fade-in {
            animation: fadeIn 1s ease-in-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-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--secondary-teal);
            color: white;
            transform: translateY(-3px);
        }
