            /* Modern Announcement Bar */
            .announcement-bar {
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
                padding: 12px 0;
                position: relative;
                overflow: hidden;
            }

            .announcement-bar::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                animation: shimmer 3s infinite;
            }

            @keyframes shimmer {
                0% {
                    left: -100%;
                }

                100% {
                    left: 100%;
                }
            }

            .announcement-container {
                position: relative;
                z-index: 2;
            }

            .announcement-content {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 15px;
            }

            .announcement-icon {
                color: white;
                font-size: 1.2rem;
            }

            .announcement-link {
                color: white;
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: 10px;
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .announcement-link:hover {
                color: #f8f9fa;
                transform: translateX(5px);
            }

            .announcement-badge {
                background: rgba(255, 255, 255, 0.2);
                padding: 4px 8px;
                border-radius: 12px;
                font-size: 0.8rem;
                font-weight: 600;
            }

            /* Modern Hero Carousel */
            .modern-hero-carousel {
                position: relative;
                height: 70vh;
                min-height: 500px;
                overflow: hidden;
            }

            .modern-carousel {
                height: 100%;
            }

            .carousel-image-container {
                position: relative;
                height: 100%;
                overflow: hidden;
            }

            .carousel-image-container img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

            .carousel-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
                z-index: 1;
            }

            .modern-caption {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                text-align: center;
                z-index: 2;
                width: 100%;
                padding: 0 20px;
            }

            .caption-content {
                max-width: 800px;
                margin: 0 auto;
            }

            .caption-title {
                font-size: 3.5rem;
                font-weight: 700;
                color: white;
                margin-bottom: 20px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
                line-height: 1.2;
            }

            .caption-subtitle {
                font-size: 1.3rem;
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 30px;
                font-weight: 300;
            }

            .caption-actions {
                margin-top: 30px;
            }

            .btn-enroll {
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
                border: none;
                padding: 15px 30px;
                font-size: 1.1rem;
                font-weight: 600;
                border-radius: 50px;
                box-shadow: 0 8px 25px rgba(16, 110, 190, 0.3);
                transition: all 0.3s ease;
                color: white;
            }

            .btn-enroll:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 35px rgba(16, 110, 190, 0.4);
                background: linear-gradient(135deg, #0d5a9a 0%, #106EBE 100%);
                color: white;
            }

            /* Modern Indicators */
            .carousel-indicators-modern {
                position: absolute;
                bottom: 30px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 10px;
                z-index: 3;
            }

            .carousel-indicators-modern button {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                border: 2px solid rgba(255, 255, 255, 0.5);
                background: transparent;
                transition: all 0.3s ease;
                cursor: pointer;
            }

            .carousel-indicators-modern button.active {
                background: white;
                border-color: white;
                transform: scale(1.2);
            }

            /* Modern Controls */
            .modern-control {
                width: 60px;
                height: 60px;
                background: rgba(255, 255, 255, 0.1);
                border: 2px solid rgba(255, 255, 255, 0.3);
                border-radius: 50%;
                backdrop-filter: blur(10px);
                transition: all 0.3s ease;
                z-index: 3;
            }

            .modern-control:hover {
                background: rgba(255, 255, 255, 0.2);
                border-color: rgba(255, 255, 255, 0.5);
                transform: scale(1.1);
            }


            /* Quick Actions Section */
            .quick-actions-section {
                padding: 60px 0;
                background: #f8f9fa;
            }

            .quick-actions-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .quick-action-card {
                background: white;
                border-radius: 16px;
                padding: 25px;
                display: flex;
                align-items: center;
                gap: 20px;
                text-decoration: none;
                color: inherit;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
                border: 1px solid rgba(0, 0, 0, 0.05);
            }

            .quick-action-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
                text-decoration: none;
                color: inherit;
            }

            .action-icon {
                width: 60px;
                height: 60px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                color: white;
                flex-shrink: 0;
            }

            .enroll-card .action-icon {
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
            }

            .test-card .action-icon {
                background: linear-gradient(135deg, #F4F427 0%, #AFB067 100%);
            }

            .trainee-card .action-icon {
                background: linear-gradient(135deg, #0FFCBE 0%, #106EBE 100%);
            }

            .language-card .action-icon {
                background: linear-gradient(135deg, #AFB067 0%, #F4F427 100%);
            }

            .elab-card .action-icon {
                background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
            }

            .action-content {
                flex: 1;
            }

            .action-content h4 {
                font-size: 1.2rem;
                font-weight: 600;
                margin-bottom: 5px;
                color: #2d3748;
            }

            .action-content p {
                color: #718096;
                margin: 0;
                font-size: 0.9rem;
            }

            .action-arrow {
                color: #a0aec0;
                font-size: 1.2rem;
                transition: all 0.3s ease;
            }

            .quick-action-card:hover .action-arrow {
                color: #106EBE;
                transform: translateX(5px);
            }

            .language-dropdown {
                margin-left: auto;
            }

            /* Modern Principal Section */
            .modern-principal-section {
                padding: 80px 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            }

            .principal-card {
                background: white;
                border-radius: 20px;
                padding: 50px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                border: 1px solid rgba(0, 0, 0, 0.05);
            }

            .principal-image-container {
                position: relative;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            }

            .principal-image {
                width: 100%;
                height: auto;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .image-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
                padding: 30px 25px 25px;
                color: white;
                transform: translateY(100%);
                transition: transform 0.3s ease;
            }

            .principal-image-container:hover .image-overlay {
                transform: translateY(0);
            }

            .principal-image-container:hover .principal-image {
                transform: scale(1.05);
            }

            .overlay-content h4 {
                font-size: 1.3rem;
                font-weight: 600;
                margin-bottom: 5px;
            }

            .overlay-content p {
                margin: 0;
                opacity: 0.9;
            }

            .principal-content {
                padding-left: 40px;
            }

            .section-header {
                margin-bottom: 30px;
            }

            .section-badge {
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
                color: white;
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 0.9rem;
                font-weight: 600;
                display: inline-block;
                margin-bottom: 15px;
            }

            .section-title {
                font-size: 2.5rem;
                font-weight: 700;
                color: #2d3748;
                margin: 0;
                line-height: 1.2;
            }

            .message-text {
                font-size: 1.1rem;
                line-height: 1.8;
                color: #4a5568;
                margin-bottom: 30px;
                font-style: italic;
            }

            .principal-signature {
                margin-top: 30px;
            }

            .signature-line {
                width: 60px;
                height: 3px;
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
                margin-bottom: 10px;
            }

            .signature-text {
                color: #718096;
                font-weight: 500;
                margin: 0;
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .caption-title {
                    font-size: 2.5rem;
                }

                .caption-subtitle {
                    font-size: 1.1rem;
                }

                .quick-actions-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }

                .principal-card {
                    padding: 30px 20px;
                }

                .principal-content {
                    padding-left: 0;
                    margin-top: 30px;
                }

                .section-title {
                    font-size: 2rem;
                }

                .modern-hero-carousel {
                    height: 50vh;
                    min-height: 400px;
                }
            }

            @media (max-width: 480px) {
                .caption-title {
                    font-size: 2rem;
                }

                .quick-action-card {
                    padding: 20px;
                    gap: 15px;
                }

                .action-icon {
                    width: 50px;
                    height: 50px;
                    font-size: 1.2rem;
                }

                .principal-card {
                    padding: 20px 15px;
                }

                .section-title {
                    font-size: 1.8rem;
                }
            }

            /* Animation Enhancements */
            .quick-action-card,
            .principal-card {
                animation: fadeInUp 0.6s ease-out;
            }

            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Smooth transitions for all interactive elements */
            * {
                transition: all 0.3s ease;
            }

            /* Loading states */
            .quick-action-card.loading {
                opacity: 0.7;
                pointer-events: none;
            }

            .quick-action-card.loading::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 20px;
                height: 20px;
                margin: -10px 0 0 -10px;
                border: 2px solid #f3f3f3;
                border-top: 2px solid #106EBE;
                border-radius: 50%;
                animation: spin 1s linear infinite;
            }

            @keyframes spin {
                0% {
                    transform: rotate(0deg);
                }

                100% {
                    transform: rotate(360deg);
                }
            }

            /* Modern Notices & Results Section */
            .modern-notices-results-section {
                padding: 80px 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            }

            .notices-results-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .content-card {
                background: white;
                border-radius: 20px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                transition: all 0.3s ease;
            }

            .content-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            }

            .card-header {
                padding: 30px 30px 20px;
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
                color: white;
                display: flex;
                align-items: center;
                gap: 20px;
            }

            .header-icon {
                width: 60px;
                height: 60px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
            }

            .header-content {
                flex: 1;
            }

            .header-content h3 {
                font-size: 1.5rem;
                font-weight: 600;
                margin: 0 0 5px 0;
            }

            .view-all-link {
                color: rgba(255, 255, 255, 0.9);
                text-decoration: none;
                font-size: 0.9rem;
                display: flex;
                align-items: center;
                gap: 5px;
                transition: all 0.3s ease;
            }

            .view-all-link:hover {
                color: white;
                transform: translateX(5px);
            }

            .card-body {
                padding: 30px;
            }

            .notices-list,
            .results-list {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            .notice-item,
            .result-item {
                padding: 20px;
                background: #f8f9fa;
                border-radius: 12px;
                border-left: 4px solid #106EBE;
                transition: all 0.3s ease;
            }

            .notice-item:hover,
            .result-item:hover {
                background: #e9ecef;
                transform: translateX(5px);
            }

            .notice-header,
            .result-header {
                display: flex;
                justify-content: between;
                align-items: flex-start;
                margin-bottom: 15px;
                gap: 15px;
            }

            .notice-title,
            .result-title {
                font-size: 1.1rem;
                font-weight: 600;
                color: #2d3748;
                margin: 0;
                flex: 1;
            }

            .notice-date,
            .result-date {
                background: #106EBE;
                color: white;
                padding: 4px 12px;
                border-radius: 20px;
                font-size: 0.8rem;
                font-weight: 500;
                white-space: nowrap;
            }

            .notice-btn,
            .result-btn {
                border-radius: 8px;
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .notice-btn:hover,
            .result-btn:hover {
                transform: translateY(-2px);
            }

            .notice-preview {
                color: #4a5568;
                margin-bottom: 10px;
                line-height: 1.6;
            }

            .read-more-btn {
                color: #106EBE;
                font-weight: 500;
                padding: 0;
                text-decoration: none;
            }

            .read-more-btn:hover {
                color: #5a67d8;
            }

            .notice-full-content {
                margin-top: 15px;
                padding-top: 15px;
                border-top: 1px solid #e2e8f0;
            }

            .empty-state {
                text-align: center;
                padding: 40px 20px;
                color: #718096;
            }

            .empty-state i {
                font-size: 3rem;
                margin-bottom: 15px;
                color: #a0aec0;
            }

            .empty-state h3 {
                font-size: 1.3rem;
                margin-bottom: 10px;
                color: #4a5568;
            }

            /* Modern Testimonials Section */
            .modern-testimonials-section {
                padding: 80px 0;
                background: white;
            }

            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 30px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .testimonial-card {
                background: white;
                border-radius: 20px;
                padding: 30px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
                border: 1px solid rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .testimonial-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
            }

            .testimonial-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            }

            .testimonial-content {
                margin-bottom: 25px;
            }

            .quote-icon {
                color: #D8A8B1;
                font-size: 2rem;
                margin-bottom: 15px;
                opacity: 0.7;
            }

            .testimonial-text {
                font-size: 1rem;
                line-height: 1.7;
                color: #4a5568;
                font-style: italic;
                margin: 0;
            }

            .testimonial-author {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .author-image {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                overflow: hidden;
                border: 3px solid #D8A8B1;
            }

            .author-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .author-info {
                flex: 1;
            }

            .author-name {
                font-size: 1.1rem;
                font-weight: 600;
                color: #2d3748;
                margin: 0 0 5px 0;
            }

            .author-designation {
                color: #718096;
                margin: 0 0 8px 0;
                font-size: 0.9rem;
            }

            .rating {
                color: #f6ad55;
                font-size: 0.9rem;
            }

            /* Modern Infrastructure Section */
            .modern-infrastructure-section {
                padding: 80px 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            }

            .infrastructure-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .infrastructure-card {
                background: white;
                border-radius: 20px;
                padding: 30px;
                text-align: center;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .infrastructure-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            }

            .card-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
                font-size: 2rem;
                color: white;
                transition: all 0.3s ease;
            }

            .infrastructure-card:hover .card-icon {
                transform: scale(1.1) rotate(5deg);
            }

            .card-content h3 {
                font-size: 1.3rem;
                font-weight: 600;
                color: #2d3748;
                margin-bottom: 15px;
            }

            .card-content p {
                color: #4a5568;
                line-height: 1.6;
                margin: 0;
            }

            .card-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
                color: white;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: all 0.3s ease;
                border-radius: 20px;
            }

            .infrastructure-card:hover .card-overlay {
                opacity: 1;
            }

            .overlay-content {
                text-align: center;
                padding: 20px;
            }

            .overlay-content h4 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .overlay-content p {
                margin-bottom: 20px;
                opacity: 0.9;
            }

            .learn-more-btn {
                background: rgba(255, 255, 255, 0.2);
                color: white;
                padding: 10px 20px;
                border-radius: 25px;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
                border: 1px solid rgba(255, 255, 255, 0.3);
            }

            .learn-more-btn:hover {
                background: rgba(255, 255, 255, 0.3);
                color: white;
            }

            /* Modern E-Books Section */
            .modern-ebooks-section {
                padding: 80px 0;
                background: white;
            }

            .ebooks-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .ebook-card {
                background: white;
                border-radius: 16px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                transition: all 0.3s ease;
                border: 1px solid rgba(0, 0, 0, 0.05);
            }

            .ebook-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            }

            .ebook-header {
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
                padding: 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }


            .download-btn {
                background: rgba(255, 255, 255, 0.2);
                color: white;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .download-btn:hover {
                background: rgba(255, 255, 255, 0.3);
                color: white;
                transform: scale(1.1);
            }

            .ebook-content {
                padding: 25px;
            }

            .ebook-title {
                font-size: 1.2rem;
                font-weight: 600;
                color: #2d3748;
                margin-bottom: 10px;
                line-height: 1.4;
            }

            .ebook-description {
                color: #4a5568;
                line-height: 1.6;
                margin-bottom: 20px;
            }

            .ebook-meta {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 20px;
            }

            .publisher-info {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .publisher-avatar {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                object-fit: cover;
            }

            .publisher-name {
                font-size: 0.9rem;
                color: #718096;
            }

            .download-count {
                display: flex;
                align-items: center;
                gap: 5px;
                color: #718096;
                font-size: 0.9rem;
            }

            .ebook-footer {
                padding: 0 25px 25px;
            }

            /* Modern Faculty Section */
            .modern-faculty-section {
                padding: 80px 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            }

            .faculty-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .faculty-card {
                background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
            }

            .faculty-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            }

            .faculty-image-container {
                position: relative;
                width: 100%;
                aspect-ratio: 5/6;
                overflow: hidden;
                background: #f8f9fa;
            }

            .faculty-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
                transition: transform 0.3s ease;
            }

            .faculty-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
                color: white;
                padding: 30px 20px 20px;
                transform: translateY(100%);
                transition: transform 0.3s ease;
            }

            .faculty-card:hover .faculty-overlay {
                transform: translateY(0);
            }

            .faculty-card:hover .faculty-image {
                transform: scale(1.05);
            }

            .overlay-content h4 {
                font-size: 1.2rem;
                margin-bottom: 5px;
            }

            .overlay-content p {
                margin: 0;
                opacity: 0.9;
            }

            .faculty-info {
                padding: 25px;
                text-align: center;
            }

            .faculty-name {
                font-size: 1.2rem;
                font-weight: 600;
                color: #2d3748;
                margin-bottom: 8px;
            }

            .faculty-designation {
                color: #718096;
                margin: 0;
                font-size: 0.9rem;
            }

            /* Desktop Optimized Styles for Faculty Section */
            @media (min-width: 769px) {
                .faculty-image-container {
                    aspect-ratio: 4/5;
                    max-height: 380px;
                }
            }

            @media (min-width: 1200px) {
                .faculty-image-container {
                    aspect-ratio: 5/6;
                    max-height: 400px;
                }
            }

            /* Mobile Responsive Styles for Faculty Section */
            @media (max-width: 768px) {
                .faculty-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                    padding: 0 15px;
                }

                .faculty-card {
                    margin: 0 auto;
                    max-width: 100%;
                }

                .faculty-image-container {
                    height: auto;
                    aspect-ratio: 3/4;
                    min-height: 300px;
                }

                .faculty-image {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }

                .faculty-info {
                    padding: 20px;
                }

                .faculty-name {
                    font-size: 1.1rem;
                }

                .faculty-designation {
                    font-size: 0.85rem;
                }
            }

            @media (max-width: 480px) {
                .faculty-grid {
                    gap: 15px;
                    padding: 0 10px;
                }

                .faculty-image-container {
                    aspect-ratio: 3/4;
                    min-height: 280px;
                }

                .faculty-info {
                    padding: 15px;
                }

                .faculty-name {
                    font-size: 1rem;
                }

                .faculty-designation {
                    font-size: 0.8rem;
                }
            }

            /* Modern Visitor Counter Section */
            .modern-visitor-counter-section {
                padding: 40px 0;
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 50%, #0FFCBE 100%);
                background-size: 200% 200%;
                animation: gradientShift 8s ease infinite;
                position: relative;
                overflow: hidden;
            }

            .modern-visitor-counter-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
                opacity: 0.3;
            }

            @keyframes gradientShift {
                0%, 100% {
                    background-position: 0% 50%;
                }
                50% {
                    background-position: 100% 50%;
                }
            }

            .visitor-counter-wrapper {
                position: relative;
                z-index: 1;
            }

            .visitor-counter-card {
                background: rgba(255, 255, 255, 0.15);
                border-radius: 16px;
                padding: 30px 25px;
                text-align: center;
                position: relative;
                backdrop-filter: blur(20px);
                border: 2px solid rgba(255, 255, 255, 0.3);
                max-width: 450px;
                margin: 0 auto;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
                transition: all 0.3s ease;
            }

            .visitor-counter-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
                border-color: rgba(255, 255, 255, 0.5);
            }

            .counter-content {
                position: relative;
                z-index: 2;
                margin-bottom: 20px;
            }

            .counter-icon-wrapper {
                position: relative;
                display: inline-block;
                margin-bottom: 15px;
            }

            .counter-icon-bg {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 70px;
                height: 70px;
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(15, 252, 190, 0.3));
                border-radius: 50%;
                animation: iconPulse 3s ease infinite;
            }

            @keyframes iconPulse {
                0%, 100% {
                    transform: translate(-50%, -50%) scale(1);
                    opacity: 0.5;
                }
                50% {
                    transform: translate(-50%, -50%) scale(1.2);
                    opacity: 0.3;
                }
            }

            .counter-icon {
                font-size: 2.5rem;
                color: white;
                position: relative;
                z-index: 1;
                filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
            }

            .counter-info {
                position: relative;
                z-index: 2;
            }

            .counter-label {
                display: inline-block;
                font-size: 0.85rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 12px;
                padding: 6px 16px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 15px;
                backdrop-filter: blur(10px);
            }

            .counter-number-wrapper {
                display: flex;
                align-items: baseline;
                justify-content: center;
                gap: 8px;
                margin-bottom: 12px;
            }

            .counter-number {
                font-size: 3rem;
                font-weight: 800;
                line-height: 1;
                background: linear-gradient(135deg, #ffffff 0%, #0FFCBE 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
                font-family: 'Poppins', sans-serif;
                letter-spacing: -1px;
            }

            .counter-plus {
                font-size: 1.8rem;
                font-weight: 700;
                color: #0FFCBE;
                animation: bounce 2s ease infinite;
            }

            @keyframes bounce {
                0%, 100% {
                    transform: translateY(0);
                }
                50% {
                    transform: translateY(-10px);
                }
            }

            .counter-description {
                font-size: 0.95rem;
                opacity: 0.95;
                margin: 0;
                color: rgba(255, 255, 255, 0.95);
                font-weight: 500;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
            }

            .counter-description i {
                color: #0FFCBE;
                font-size: 1rem;
            }

            .counter-stats {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 15px;
                margin-top: 20px;
                padding-top: 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
            }

            .stat-item {
                display: flex;
                align-items: center;
                gap: 6px;
                color: rgba(255, 255, 255, 0.9);
                font-size: 0.8rem;
                font-weight: 500;
            }

            .stat-item i {
                color: #0FFCBE;
                font-size: 0.95rem;
            }

            .stat-divider {
                width: 1px;
                height: 20px;
                background: rgba(255, 255, 255, 0.3);
            }

            .counter-animation {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 180px;
                height: 180px;
                pointer-events: none;
            }

            .pulse-ring {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 100%;
                height: 100%;
                border: 3px solid rgba(15, 252, 190, 0.4);
                border-radius: 50%;
                animation: pulse 3s ease-out infinite;
            }

            .pulse-ring:nth-child(2) {
                animation-delay: 1s;
                border-color: rgba(255, 255, 255, 0.3);
            }

            .pulse-ring:nth-child(3) {
                animation-delay: 2s;
                border-color: rgba(15, 252, 190, 0.2);
            }

            @keyframes pulse {
                0% {
                    transform: translate(-50%, -50%) scale(0.8);
                    opacity: 1;
                }
                100% {
                    transform: translate(-50%, -50%) scale(1.5);
                    opacity: 0;
                }
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .modern-visitor-counter-section {
                    padding: 30px 0;
                }

                .visitor-counter-card {
                    padding: 25px 20px;
                    max-width: 100%;
                }

                .counter-number {
                    font-size: 2.5rem;
                }

                .counter-icon {
                    font-size: 2rem;
                }

                .counter-icon-bg {
                    width: 60px;
                    height: 60px;
                }

                .counter-stats {
                    flex-direction: column;
                    gap: 12px;
                }

                .stat-divider {
                    width: 50px;
                    height: 1px;
                }

                .counter-animation {
                    width: 150px;
                    height: 150px;
                }
            }

            /* Responsive Design for New Sections */
            @media (max-width: 768px) {
                .notices-results-grid {
                    grid-template-columns: 1fr;
                    gap: 30px;
                }

                .testimonials-grid {
                    grid-template-columns: 1fr;
                    gap: 25px;
                }

                .infrastructure-grid {
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 25px;
                }

                .ebooks-grid {
                    grid-template-columns: 1fr;
                    gap: 25px;
                }

                .faculty-grid {
                    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap: 25px;
                }

                .card-header {
                    padding: 25px 20px 15px;
                }

                .card-body {
                    padding: 25px 20px;
                }

                .testimonial-card {
                    padding: 25px;
                }

                .infrastructure-card {
                    padding: 25px;
                }

                .ebook-content {
                    padding: 20px;
                }

                .ebook-footer {
                    padding: 0 20px 20px;
                }

                .faculty-info {
                    padding: 20px;
                }

                .visitor-counter-card {
                    padding: 30px 20px;
                }

                .counter-number {
                    font-size: 2.5rem;
                }
            }

            @media (max-width: 480px) {

                .notice-item,
                .result-item {
                    padding: 15px;
                }

                .notice-header,
                .result-header {
                    flex-direction: column;
                    gap: 10px;
                }

                .notice-date,
                .result-date {
                    align-self: flex-start;
                }

                .testimonial-author {
                    flex-direction: column;
                    text-align: center;
                    gap: 10px;
                }

                .infrastructure-card {
                    padding: 20px;
                }

                .card-icon {
                    width: 60px;
                    height: 60px;
                    font-size: 1.5rem;
                }

                .ebook-header {
                    padding: 15px;
                }

                .ebook-content {
                    padding: 15px;
                }

                .ebook-footer {
                    padding: 0 15px 15px;
                }

                .faculty-image-container {
                    height: 200px;
                }

                .faculty-info {
                    padding: 15px;
                }

                .visitor-counter-card {
                    padding: 25px 15px;
                }

                .counter-number {
                    font-size: 2rem;
                }

                .counter-icon {
                    font-size: 2rem;
                }
            }

            /* Modern Test Yourself Modal Styles */
            .modern-modal .modal-dialog {
                max-width: 800px;
            }

            .modern-modal-content {
                border: none;
                border-radius: 20px;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
                overflow: hidden;
                background: white;
            }

            .modern-modal-header {
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
                color: white;
                padding: 30px;
                border: none;
                position: relative;
            }

            .modern-modal-header::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
                opacity: 0.3;
            }

            .modal-title-section {
                display: flex;
                align-items: center;
                gap: 20px;
                position: relative;
                z-index: 2;
            }

            .modal-icon {
                width: 60px;
                height: 60px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.8rem;
                backdrop-filter: blur(10px);
            }

            .modal-title-content {
                flex: 1;
            }

            .modal-title {
                font-size: 1.8rem;
                font-weight: 700;
                margin: 0 0 5px 0;
            }

            .modal-subtitle {
                font-size: 1rem;
                opacity: 0.9;
                margin: 0;
            }

            .modern-close {
                background: rgba(255, 255, 255, 0.2);
                border: none;
                color: white;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.2rem;
                transition: all 0.3s ease;
                position: relative;
                z-index: 2;
            }

            .modern-close:hover {
                background: rgba(255, 255, 255, 0.3);
                transform: scale(1.1);
            }

            .modern-modal-body {
                padding: 40px 30px;
            }

            .test-selection-container {
                max-width: 100%;
            }

            .test-cards-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 25px;
                margin-bottom: 30px;
            }

            .modern-test-card {
                background: white;
                border-radius: 16px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
                border: 1px solid rgba(0, 0, 0, 0.05);
                overflow: hidden;
                transition: all 0.3s ease;
                position: relative;
            }

            .modern-test-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            }

            .test-card-header {
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                padding: 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .test-icon {
                width: 50px;
                height: 50px;
                background: linear-gradient(135deg, #106EBE 0%, #0d5a9a 100%);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.5rem;
            }

            .test-badge {
                background: #106EBE;
                color: white;
                padding: 6px 12px;
                border-radius: 20px;
                font-size: 0.8rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .test-card-content {
                padding: 25px;
            }

            .test-title {
                font-size: 1.3rem;
                font-weight: 600;
                color: #2d3748;
                margin-bottom: 10px;
            }

            .test-description {
                color: #4a5568;
                line-height: 1.6;
                margin-bottom: 20px;
            }

            .test-features {
                margin-bottom: 20px;
            }

            .feature-item {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-bottom: 8px;
                font-size: 0.9rem;
                color: #4a5568;
            }

            .feature-item i {
                color: #AFB067;
                font-size: 0.8rem;
            }

            .test-card-footer {
                padding: 0 25px 25px;
            }

            .modern-test-btn {
                width: 100%;
                padding: 12px 20px;
                border-radius: 10px;
                font-weight: 600;
                font-size: 1rem;
                transition: all 0.3s ease;
                border: none;
                position: relative;
                overflow: hidden;
            }

            .modern-test-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                transition: left 0.5s ease;
            }

            .modern-test-btn:hover::before {
                left: 100%;
            }

            .modern-test-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            }

            .test-info-section {
                margin-top: 30px;
            }

            .info-card {
                background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
                border-radius: 16px;
                padding: 25px;
                border-left: 4px solid #106EBE;
                display: flex;
                gap: 20px;
                align-items: flex-start;
            }

            .info-icon {
                width: 40px;
                height: 40px;
                background: #106EBE;
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.2rem;
                flex-shrink: 0;
            }

            .info-content h6 {
                font-size: 1.1rem;
                font-weight: 600;
                color: #2d3748;
                margin-bottom: 15px;
            }

            .info-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .info-list li {
                color: #4a5568;
                margin-bottom: 8px;
                padding-left: 20px;
                position: relative;
                line-height: 1.5;
            }

            .info-list li::before {
                content: 'â€¢';
                color: #F4F427;
                font-weight: bold;
                position: absolute;
                left: 0;
            }

            .modern-modal-footer {
                background: #f8f9fa;
                padding: 20px 30px;
                border: none;
                display: flex;
                justify-content: flex-end;
            }

            .modern-close-btn {
                padding: 10px 20px;
                border-radius: 8px;
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .modern-close-btn:hover {
                transform: translateY(-2px);
            }

            /* Responsive Modal */
            @media (max-width: 768px) {
                .modern-modal .modal-dialog {
                    margin: 20px;
                    max-width: calc(100% - 40px);
                }

                .modern-modal-header {
                    padding: 25px 20px;
                }

                .modal-title-section {
                    gap: 15px;
                }

                .modal-icon {
                    width: 50px;
                    height: 50px;
                    font-size: 1.5rem;
                }

                .modal-title {
                    font-size: 1.5rem;
                }

                .modal-subtitle {
                    font-size: 0.9rem;
                }

                .modern-modal-body {
                    padding: 30px 20px;
                }

                .test-cards-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }

                .test-card-content {
                    padding: 20px;
                }

                .test-card-footer {
                    padding: 0 20px 20px;
                }

                .info-card {
                    flex-direction: column;
                    text-align: center;
                    gap: 15px;
                }

                .modern-modal-footer {
                    padding: 15px 20px;
                }
            }

            @media (max-width: 480px) {
                .modern-modal-header {
                    padding: 20px 15px;
                }

                .modal-title-section {
                    flex-direction: column;
                    text-align: center;
                    gap: 10px;
                }

                .modal-title {
                    font-size: 1.3rem;
                }

                .modern-modal-body {
                    padding: 25px 15px;
                }

                .test-card-content {
                    padding: 15px;
                }

                .test-card-footer {
                    padding: 0 15px 15px;
                }

                .info-card {
                    padding: 20px 15px;
                }
            }
