        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            line-height: 1.6;
        }

        /* Header Styles */
        .navbar {
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 10px 0;
            background-color: #fff;
            border-bottom: 3px solid #0d6efd;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50 !important;
        }

        .navbar .nav-link {
            font-weight: 500;
            color: #495057;
            margin: 0 10px;
            padding: 10px 15px !important;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .navbar .nav-link:hover {
            color: #0d6efd;
            background-color: rgba(13, 110, 253, 0.1);
        }

        .navbar .nav-link.active {
            color: #fff !important;
            background-color: #0d6efd;
        }

        .login-btn {
            margin-left: 10px;
            padding: 8px 20px !important;
            border: 2px solid #0d6efd;
            border-radius: 25px;
            color: #0d6efd !important;
            font-weight: 600;
            transition: all 0.3s;
        }

        .login-btn:hover {
            background-color: #0d6efd;
            color: #fff !important;
        }

        .admin-login-btn {
            margin-left: 10px;
            padding: 8px 20px !important;
            border: 2px solid #dc3545;
            border-radius: 25px;
            color: #dc3545 !important;
            font-weight: 600;
            transition: all 0.3s;
        }

        .admin-login-btn:hover {
            background-color: #dc3545;
            color: #fff !important;
            transform: translateY(-2px);
        }

        /* Notice Banner */
        .notice-banner {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 0;
            overflow: hidden;
        }

        .notice-content {
            white-space: nowrap;
            animation: scroll-left 30s linear infinite;
            font-weight: 500;
        }

        .notice-item-banner {
            display: inline-block;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .notice-item-banner a {
            color: white !important;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .notice-item-banner a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
            text-decoration: none;
        }

        @keyframes scroll-left {
            0% { transform: translate3d(100%, 0, 0); }
            100% { transform: translate3d(-100%, 0, 0); }
        }

        /* Hero Section with Auto Slideshow */
        .hero-section {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            animation: slideShow 20s infinite;
        }

        .hero-slide.active {
            opacity: 1;
        }

        /* Multiple Background Images for Slideshow */
        .hero-slide:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-4.0.3&auto=format&fit=crop&w=1986&q=80');
            animation-delay: 0s;
        }

        .hero-slide:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1571260899304-425eee4c7efc?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            animation-delay: 4s;
        }

        .hero-slide:nth-child(3) {
            background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            animation-delay: 8s;
        }

        .hero-slide:nth-child(4) {
            background-image: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            animation-delay: 12s;
        }

        .hero-slide:nth-child(5) {
            background-image: url('https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            animation-delay: 16s;
        }

        @keyframes slideShow {
            0% { opacity: 0; }
            10% { opacity: 1; }
            20% { opacity: 1; }
            30% { opacity: 0; }
            100% { opacity: 0; }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.7), rgba(108, 99, 255, 0.7));
            z-index: -1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-in-out;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-in-out 0.3s both;
        }

        .hero-content .btn {
            animation: fadeInUp 1s ease-in-out 0.6s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Slide Indicators */
        .slide-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slide-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slide-indicator.active {
            background: white;
            transform: scale(1.2);
        }

        /* Main Content Area */
        .main-content {
            padding: 80px 0;
        }

        /* Faculty Section */
        .faculty-section h2 {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .faculty-section h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #0d6efd;
        }

        .faculty-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s;
            overflow: hidden;
            margin-bottom: 30px;
            border: none;
        }

        .faculty-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .faculty-img {
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .faculty-card .card-body {
            padding: 25px;
            text-align: center;
        }

        .faculty-card .card-title {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .faculty-card .card-text {
            color: #6c757d;
            margin-bottom: 8px;
        }

        /* Important Links Section */
        .links-section h3 {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .links-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #28a745;
        }

        .notice-card, .links-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border: none;
            margin-bottom: 20px;
        }

        .notice-card .card-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 15px 15px 0 0 !important;
            border: none;
            padding: 20px;
        }

        .links-card .card-header {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            border-radius: 15px 15px 0 0 !important;
            border: none;
            padding: 20px;
        }

        .list-group-item {
            border: none;
            border-bottom: 1px solid #e9ecef;
            padding: 15px 20px;
            transition: all 0.3s;
        }

        .list-group-item:hover {
            background-color: #f8f9fa;
            padding-left: 30px;
        }

        .list-group-item a {
            color: #495057;
            text-decoration: none;
            font-weight: 500;
        }

        .list-group-item a:hover {
            color: #0d6efd;
        }

        /* Notice Items */
        .notice-item {
            padding: 15px 20px;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s;
        }

        .notice-item:hover {
            background-color: #f8f9fa;
        }

        .notice-date {
            color: #6c757d;
            font-size: 0.9rem;
            float: right;
        }

        /* Modern Footer Styles */
        footer {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0 0 0;
            margin-top: 80px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 50px;
            background: linear-gradient(135deg, transparent 0%, #667eea 100%);
            transform: skewY(-2deg);
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        footer h5 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
        }

        footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #fff, rgba(255,255,255,0.5));
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-links li a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links li a:hover {
            color: #fff;
            transform: translateX(5px);
        }

        .footer-links li a i {
            margin-right: 8px;
            width: 16px;
        }

        .contact-info p {
            color: rgba(255,255,255,0.9);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 12px;
            width: 20px;
            color: #fff;
        }

        .social-links {
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: #fff;
            margin-right: 15px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .social-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .footer-bottom {
            background: rgba(0,0,0,0.2);
            padding: 25px 0;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-bottom p {
            margin: 0;
            color: rgba(255,255,255,0.8);
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            margin-left: 20px;
            transition: all 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        /* Modal Styles */
        .modal-content {
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }

        .modal-header {
            padding: 25px 30px;
            border-bottom: none;
        }

        .modal-body {
            padding: 30px;
        }

        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            height: auto;
            border: 2px solid #e9ecef;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        }

        .btn-login-modal {
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .faculty-card {
                margin-bottom: 20px;
            }

            .hero-section {
                height: 500px;
            }
        }
