
        :root {
            --college-blue: #002e5b;
            --college-gold: #ffcc00;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }

        .bg-college-blue { background-color: var(--college-blue) !important; }
        .text-college-blue { color: var(--college-blue) !important; }
        
        .top-header {
            font-size: 0.75rem;
            padding: 8px 0;
        }

        /* Navigation - Mobile Toggle Right, Links Left */
        .navbar-brand h1 {
            font-size: 1.1rem;
            margin: 0;
            font-weight: 700;
            line-height: 1.2;
        }
        @media (min-width: 768px) {
            .navbar-brand h1 { font-size: 1.5rem; }
        }

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .navbar-collapse {
                text-align: left; /* Links back to left alignment */
                padding: 1rem 0;
                background: #fff;
            }
            .navbar-nav {
                align-items: flex-start; /* Items to the left */
            }
            .dropdown-menu {
                border: none;
                padding-left: 1.5rem;
            }
        }

        .nav-link {
            font-weight: 600;
            font-size: 0.85rem;
            color: #333 !important;
            text-transform: uppercase;
            padding: 10px 15px !important;
            transition: 0.3s;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--college-blue) !important;
            border-bottom: 2px solid var(--college-gold);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 46, 91, 0.8), rgba(0, 46, 91, 0.6)), 
                        url('https://images.unsplash.com/photo-1541339907198-e08756ebafe3?auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            min-height: 500px;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }

        /* Marquee */
        .marquee-container {
            background: #f1f1f1;
            border-bottom: 2px solid var(--college-blue);
            display: flex;
            align-items: center;
        }
        .notice-badge {
            background: #dc3545;
            color: white;
            padding: 8px 15px;
            font-weight: bold;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        /* Stats Section */
        .stat-card {
            border-radius: 15px;
            background: white;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            border-bottom: 4px solid var(--college-gold);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--college-blue);
            display: block;
        }

        /* Faculty Section & Slider */
        .faculty-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            background: white;
            height: 100%;
            transition: 0.3s;
            margin: 10px; /* Spacing for slider */
        }
        .faculty-card:hover { transform: translateY(-5px); }
        .faculty-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            background: #eee;
        }
        .faculty-info { padding: 1.5rem; text-align: center; }
        .faculty-role { color: #6c757d; font-size: 0.85rem; font-weight: 600; }

        .carousel-control-prev-icon, .carousel-control-next-icon {
            background-color: var(--college-blue);
            border-radius: 50%;
            padding: 1.5rem;
        }

        /* Notice Board */
        .notice-card {
            border-top: 5px solid var(--college-blue);
            border-radius: 10px;
            background: white;
        }
        .notice-item {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
            transition: 0.2s;
        }
        .notice-item:hover { background: #f8f9fa; }
        .notice-date { font-size: 0.75rem; color: #dc3545; font-weight: bold; }

        /* Testimonials */
        .testimonial-section {
            background-color: #fff;
            padding: 80px 0;
        }
        .testimonial-card {
            padding: 30px;
            border-radius: 20px;
            background: #fdfdfd;
            border: 1px solid #eee;
            position: relative;
            margin: 15px;
        }
        .testimonial-card i.fa-quote-left {
            color: var(--college-gold);
            font-size: 2rem;
            opacity: 0.3;
            margin-bottom: 15px;
        }
        .student-thumb {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--college-gold);
        }

        /* Gallery Styles */
        .gallery-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            transition: 0.4s;
            cursor: pointer;
        }
        .gallery-img:hover {
            transform: scale(1.02);
        }
        /* Custom Gallery Carousel Dots */
        .carousel-indicators [data-bs-target] {
            background-color: var(--college-blue);
        }

        /* FAQ Accordion Styles */
        .accordion-button:not(.collapsed) {
            background-color: #f0f7ff;
            color: var(--college-blue);
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }

        /* New Achievement & Topper Styles */
        .achievement-card {
            border-left: 5px solid var(--college-gold);
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            height: 100%;
        }
        .topper-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            border: 1px solid #eee;
            transition: 0.3s;
        }
        .topper-card:hover { border-color: var(--college-gold); transform: translateY(-5px); }
        .topper-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 4px solid #f8f9fa;
        }

        /* Footer */
        .footer {
            background-color: #001e3c;
            color: #adb5bd;
            padding: 60px 0 20px;
        }
        .footer h4 { color: var(--college-gold); margin-bottom: 25px; }
        .social-btn {
            width: 40px; height: 40px;
            display: inline-flex; align-items: center; justify-content: center;
            background: rgba(255,255,255,0.1);
            color: white; border-radius: 50%; margin-right: 10px;
            transition: 0.3s; text-decoration: none;
        }
        .social-btn:hover { background: var(--college-gold); color: var(--college-blue); }
    