
            * {
                font-family: 'Poppins', sans-serif;
            }

            body {
                background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 50%, #e0f2fe 100%);
                background-size: 400% 400%;
                animation: gradientShift 15s ease infinite;
                min-height: 100vh;
                position: relative;
                overflow-x: hidden;
            }

            body::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
                pointer-events: none;
                z-index: 1;
            }

            @keyframes gradientShift {
                0% {
                    background-position: 0% 50%;
                }

                50% {
                    background-position: 100% 50%;
                }

                100% {
                    background-position: 0% 50%;
                }
            }

            .content-wrapper {
                position: relative;
                z-index: 2;
            }

            /* Card Styles with Glass Effect */
            .teacher-card {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                border-radius: 28px;
                overflow: hidden;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border: 2px solid rgba(255, 255, 255, 0.4);
            }

            .teacher-card:hover {
                transform: translateY(-16px) rotateX(5deg);
                box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25),
                    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
                    0 0 60px rgba(59, 130, 246, 0.4);
                border-color: rgba(255, 255, 255, 0.6);
            }

            /* Photo Section with Advanced Effects */
            .photo-section {
                background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
                padding: 2.5rem 1.5rem 1.5rem;
                position: relative;
                overflow: hidden;
            }

            .photo-section::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: linear-gradient(45deg,
                        transparent 30%,
                        rgba(255, 255, 255, 0.4) 50%,
                        transparent 70%);
                transform: rotate(45deg);
                transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .teacher-card:hover .photo-section::before {
                left: 100%;
            }

            .photo-section::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
                pointer-events: none;
            }

            .teacher-photo {
                width: 140px;
                height: 140px;
                border-radius: 50%;
                border: 6px solid white;
                object-fit: cover;
                margin: 0 auto;
                display: block;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                    0 0 0 4px rgba(255, 255, 255, 0.3);
                transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                z-index: 2;
            }

            .teacher-card:hover .teacher-photo {
                transform: scale(1.15) rotate(5deg);
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3),
                    0 0 0 6px rgba(255, 255, 255, 0.5);
            }

            .photo-placeholder {
                width: 140px;
                height: 140px;
                border-radius: 50%;
                border: 6px solid white;
                background: white;
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                    0 0 0 4px rgba(255, 255, 255, 0.3);
                transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                z-index: 2;
            }

            .teacher-card:hover .photo-placeholder {
                transform: scale(1.15) rotate(5deg);
            }

            /* Badge Styles */
            .category-badge {
                position: absolute;
                top: 16px;
                left: 16px;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                padding: 6px 16px;
                border-radius: 16px;
                font-size: 11px;
                font-weight: 800;
                color: #2563eb;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                display: flex;
                align-items: center;
                gap: 6px;
                z-index: 10;
                animation: badgePulse 2s ease-in-out infinite;
                border: 1px solid rgba(37, 99, 235, 0.3);
            }

            @keyframes badgePulse {

                0%,
                100% {
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                }

                50% {
                    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
                }
            }

            .info-badge {
                background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
                color: white;
                padding: 8px 20px;
                border-radius: 24px;
                font-size: 12px;
                font-weight: 700;
                display: inline-flex;
                align-items: center;
                gap: 8px;
                box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
                transition: all 0.3s ease;
            }

            .info-badge:hover {
                transform: scale(1.05);
                box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
            }

            .star-icon {
                color: #FFD700;
                font-size: 11px;
                animation: starTwinkle 2s ease-in-out infinite;
            }

            @keyframes starTwinkle {

                0%,
                100% {
                    opacity: 1;
                    transform: scale(1);
                }

                50% {
                    opacity: 0.7;
                    transform: scale(0.9);
                }
            }

            /* Location Tag */
            .location-tag {
                color: #6B7280;
                font-size: 13px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 5px;
                margin-top: 12px;
                padding: 6px 14px;
                background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
                border-radius: 20px;
                display: inline-flex;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            }

            /* Social Button */
            .social-btn {
                width: 42px;
                height: 42px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                color: white;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                position: relative;
                overflow: hidden;
            }

            .social-btn::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
                transform: translate(-50%, -50%);
                transition: width 0.6s, height 0.6s;
            }

            .social-btn:hover::before {
                width: 100%;
                height: 100%;
            }

            .social-btn:hover {
                transform: translateY(-4px) scale(1.15) rotate(10deg);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            }

            /* Header Styles */
            .header-icon {
                animation: floatIcon 3s ease-in-out infinite;
            }

            @keyframes floatIcon {

                0%,
                100% {
                    transform: translateY(0px);
                }

                50% {
                    transform: translateY(-10px);
                }
            }

            .header-badge {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(15px);
                padding: 12px 24px;
                border-radius: 28px;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border: 2px solid rgba(255, 255, 255, 0.5);
            }

            .header-badge:hover {
                transform: translateY(-4px) scale(1.05);
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
                border-color: rgba(255, 255, 255, 0.8);
            }

            .quote-card {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                border-radius: 24px;
                padding: 2rem;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
                max-width: 750px;
                margin: 0 auto;
                border: 2px solid rgba(255, 255, 255, 0.5);
                position: relative;
                overflow: hidden;
            }

            .quote-card::before {
                content: '';
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(45deg, #3b82f6, #2563eb, #60a5fa, #3b82f6);
                background-size: 300% 300%;
                border-radius: 24px;
                z-index: -1;
                animation: borderGlow 3s ease infinite;
            }

            @keyframes borderGlow {

                0%,
                100% {
                    opacity: 0.3;
                }

                50% {
                    opacity: 0.8;
                }
            }

            .shimmer-text {
                background: linear-gradient(90deg, #3b82f6 0%, #2563eb 25%, #1d4ed8 50%, #2563eb 75%, #3b82f6 100%);
                background-size: 200% 100%;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                animation: shimmer 3s linear infinite;
            }

            @keyframes shimmer {
                0% {
                    background-position: -200% 0;
                }

                100% {
                    background-position: 200% 0;
                }
            }

            /* Decorative Elements */
            .name-decoration {
                position: relative;
                display: inline-block;
            }

            .name-decoration::after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 3px;
                background: linear-gradient(90deg, #3b82f6, #2563eb);
                border-radius: 2px;
                transition: width 0.4s ease;
            }

            .teacher-card:hover .name-decoration::after {
                width: 100%;
            }

            /* Pagination Styles - Modern Glass Design */
            .pagination-wrapper {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                border-radius: 24px;
                padding: 1.5rem 2rem;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
                border: 2px solid rgba(255, 255, 255, 0.4);
                display: inline-block;
            }

            .pagination-info {
                text-align: center;
                margin-bottom: 1.25rem;
                padding: 10px 20px;
                background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
                border-radius: 16px;
                display: inline-flex;
                align-items: center;
                gap: 8px;
                box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
            }

            .pagination-info i {
                color: #3b82f6;
                font-size: 14px;
            }

            .pagination-info-text {
                color: #1e40af;
                font-size: 13px;
                font-weight: 700;
            }

            .pagination-info-numbers {
                color: #2563eb;
                font-weight: 900;
            }

            .pagination-container {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }

            .pagination-container nav {
                display: flex;
                align-items: center;
            }

            .pagination-container .pagination {
                display: flex;
                align-items: center;
                gap: 8px;
                margin: 0;
                padding: 0;
                list-style: none;
            }

            .pagination-container .page-item {
                margin: 0;
            }

            .pagination-container .page-link {
                display: flex;
                align-items: center;
                justify-content: center;
                min-width: 44px;
                height: 44px;
                border-radius: 14px;
                background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
                color: #3b82f6;
                font-weight: 700;
                font-size: 14px;
                text-decoration: none;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
                border: 2px solid rgba(59, 130, 246, 0.2);
            }

            .pagination-container .page-link:hover {
                background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
                color: #2563eb;
                box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
                transform: translateY(-3px);
                border-color: rgba(59, 130, 246, 0.4);
            }

            .pagination-container .page-item.active .page-link {
                background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
                color: white;
                border-color: #2563eb;
                box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5),
                    0 0 0 3px rgba(59, 130, 246, 0.2);
                transform: scale(1.08);
            }

            .pagination-container .page-item.active .page-link:hover {
                background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
                transform: scale(1.08) translateY(-2px);
            }

            .pagination-container .page-item.disabled .page-link {
                background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
                color: #cbd5e1;
                cursor: not-allowed;
                border-color: #e5e7eb;
                box-shadow: none;
            }

            .pagination-container .page-item.disabled .page-link:hover {
                transform: none;
                box-shadow: none;
            }

            /* Arrow buttons special styling */
            .pagination-container .page-item:first-child .page-link,
            .pagination-container .page-item:last-child .page-link {
                background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
                font-size: 13px;
            }

            .pagination-container .page-item:first-child .page-link:hover,
            .pagination-container .page-item:last-child .page-link:hover {
                background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            }

            /* Responsive */
            @media (max-width: 640px) {
                .pagination-wrapper {
                    padding: 1rem 1.25rem;
                }

                .pagination-container .page-link {
                    min-width: 38px;
                    height: 38px;
                    font-size: 13px;
                }

                .pagination-info-text {
                    font-size: 11px;
                }

                .pagination-container {
                    gap: 6px;
                }

                .pagination-container .pagination {
                    gap: 6px;
                }
            }
      