
    
        :root {
            --primary-red: #b5262b;
            --secondary-red: #d32f2f;
            --accent-orange: #e05b1d;
            --accent-yellow: #ffb300;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
            --gradient-secondary: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
            --gradient-accent: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
            --gradient-header: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-orange) 50%, var(--accent-yellow) 100%);
            --gradient-menu: linear-gradient(135deg, #2c3e50, #34495e);
            --gradient-news: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            background-color: #f5f7fa;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        /* Top Header Styles */
        .top-header {
            background: var(--gradient-news);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .top-header a {
            color: white;
            text-decoration: none;
            margin-left: 15px;
        }
        
        /* Main Header with Dual Logos */
        .main-header {
            background: var(--gradient-header);
            color: white;
            padding: 15px 0;
            position: relative;
            overflow: hidden;
        }
        
        .main-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
            opacity: 0.1;
            z-index: 1;
        }
        
        .header-content {
            position: relative;
            z-index: 2;
        }
        
        .trust-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
            text-shadow: 1px 3px 2px rgba(0,0,0,0.5);
        }
        
        .college-name {
            color: white;
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 5px;
            text-shadow: 2px 4px 4px rgba(0,0,0,0.5);
        }
        
        .college-tagline {
            color: rgba(255,255,255,0.9);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .accreditation-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.3);
        }
        
        /* Navigation */
        .main-navbar {
            background: var(--gradient-menu) !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-nav .nav-link {
            color: white;
            font-weight: 500;
            padding: 4px 8px;
            transition: all 0.3s;
            font-size: 0.8rem;
            border-radius: 4px;
            margin: 0 1px;
        }
        
        .navbar-nav .nav-link:hover {
            color: white;
            background: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 0 0 8px 8px;
            padding: 10px 0;
        }
        
        .dropdown-item {
            padding: 8px 20px;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s;
            font-weight: 400;
            font-size: 0.8rem;
        }
        
        .dropdown-item:last-child {
            border-bottom: none;
        }
        
        .dropdown-item:hover {
            background: rgba(181, 38, 43, 0.1);
            color: var(--primary-red);
            padding-left: 25px;
        }
        
        /* Floating Online Admission Button */
        .floating-admission-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            background: var(--gradient-accent);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 25px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }
        
        .floating-admission-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            color: white;
        }
        
        /* News Ticker */
        .news-ticker {
            background: var(--gradient-news);
            color: white;
            padding: 10px 0;
        }
        
        .news-ticker-content {
            display: flex;
            align-items: center;
        }
        
        .news-label {
            background: var(--gradient-accent);
            padding: 5px 15px;
            border-radius: 4px;
            font-weight: 600;
            margin-right: 15px;
            white-space: nowrap;
        }
        
        /* Main Content Layout */
        .main-content {
            padding: 25px 0;
        }
        
        /* Sidebar Styles */
        .sidebar {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            margin-bottom: 25px;
            transition: all 0.3s;
        }
        
        .sidebar:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .sidebar-header {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .sidebar-header:hover {
            background: var(--gradient-secondary);
        }
        
        .sidebar-content {
            padding: 0;
            max-height: 400px;
            overflow-y: auto;
            transition: max-height 0.3s ease;
        }
        
        .sidebar-content.collapsed {
            max-height: 0;
            overflow: hidden;
        }
        
        .sidebar-link-item {
            padding: 10px 15px;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s;
            text-decoration: none;
            color: var(--dark-text);
            display: block;
            position: relative;
        }
        
        .sidebar-link-item:last-child {
            border-bottom: none;
        }
        
        .sidebar-link-item:hover {
            background: rgba(181, 38, 43, 0.05);
            color: var(--primary-red);
            padding-left: 20px;
        }
        
        .sidebar-link-item:hover::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent-orange);
        }
        
        /* Video Section */
        .video-section {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .video-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        /* Vision & Mission Section */
        .vision-mission-section {
            padding: 40px 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin: 25px 0;
        }
        
        .vision-card, .mission-card {
            background: var(--light-bg);
            border-radius: 10px;
            padding: 25px;
            height: 100%;
            border-left: 4px solid var(--accent-orange);
        }
        
        .vision-icon, .mission-icon {
            font-size: 2.5rem;
            color: var(--accent-orange);
            margin-bottom: 15px;
        }
        
        .mission-list {
            padding-left: 20px;
        }
        
        .mission-list li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .mission-list li:before {
            content: "•";
            color: var(--accent-orange);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        /* Faculty Section - Accordion */
        /* .faculty-section {
            padding: 40px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 30px;
            color: var(--primary-red);
            padding-bottom: 10px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .accordion-button {
            background: var(--gradient-primary);
            color: white;
            font-weight: 600;
            padding: 15px 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--gradient-secondary);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        
        .accordion-body {
            padding: 20px;
        }
        
        .faculty-actions {
            margin-top: 15px;
        }
         */
        /* Principal Section - Two Columns */
        .principal-section {
            padding: 40px 0;
            background: var(--light-bg);
            border-radius: 10px;
            margin: 25px 0;
        }
        
        .principal-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
        }
        
        .principal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .principal-img {
            width: auto;
            max-height: 300px;
            /* object-fit: ; */
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .college-img {
            width: 100%;
            max-height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .principal-name {
            color: var(--primary-red);
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .principal-quote {
            font-style: italic;
            color: #666;
            border-left: 3px solid var(--accent-orange);
            padding-left: 15px;
            margin: 15px 0;
        }
        
        /* Recruiters */
        .recruiters-section {
            padding: 40px 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .recruiter-logo {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .recruiter-logo img {
            max-width: 100%;
            max-height: 70px;
            filter: grayscale(50%);
            transition: all 0.3s;
        }
        
        .recruiter-logo:hover img {
            filter: grayscale(0);
            
        }
        
        .recruiter-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* Footer */
        .footer {
            background: var(--gradient-secondary);
            color: white;
            padding: 50px 0 0;
            margin-top: 40px;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-orange);
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-bottom {
            background: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 40px;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 40px 0;
            background: var(--gradient-primary);
            color: white;
            border-radius: 10px;
            margin: 25px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }
        
        .stat-label {
            font-size: 1rem;
            color: rgba(255,255,255,0.9);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .college-name {
                font-size: 1.6rem;
            }
            
            .trust-name {
                font-size: 1rem;
            }
            
            .news-label {
                margin-right: 10px;
                font-size: 0.8rem;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                font-size: 0.8rem;
            }
            
            .floating-admission-btn {
                bottom: 20px;
                right: 20px;
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
    