   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #1a2a6c;
            --secondary: #b21f1f;
            --accent: #ff8a00;
            --dark: #0f2027;
            --light: #f8f9fa;
            --success: #28a745;
            --danger: #dc3545;
            --edit: #1e88e5;
            --hindi: #e74c3c;
            --arts: #9b59b6;
            --english: #3498db;
            --others: #2ecc71;
            --scrollbar-thumb: #4db8ff;
            --scrollbar-track: rgba(0, 0, 0, 0.2);
        }

        body {
            background: linear-gradient(135deg, var(--dark), #203a43, #2c5364);
            color: var(--light);
            min-height: 100vh;
            overflow-x: hidden;
            padding-bottom: 50px;
        }

        .header {
            background: rgba(0, 0, 0, 0.85);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            font-size: 2.5rem;
            color: #4db8ff;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: 600;
            background: linear-gradient(90deg, #4db8ff, #1a75ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .quote-container {
            background: rgba(0, 0, 0, 0.7);
            padding: 70px 20px;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .quote-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
            filter: blur(5px) brightness(0.4);
            z-index: -1;
        }

        #quote {
            font-size: 2.5rem;
            font-weight: 300;
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.4;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
            font-style: italic;
            transition: opacity 0.5s ease;
        }

        #author {
            font-size: 1.6rem;
            margin-top: 25px;
            font-weight: 300;
            opacity: 0.9;
            transition: opacity 0.5s ease;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 60px 0 35px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .section-title {
            font-size: 2.8rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
            position: relative;
            padding: 0 20px;
            background: linear-gradient(90deg, #4db8ff, #1a75ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -12px;
            left: 20px;
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            border-radius: 3px;
        }

        .cards-scroll-container {
            width: 100%;
            overflow-x: auto;
            position: relative;
            margin-bottom: 80px;
            padding: 15px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
        }

        .cards-scroll-container::-webkit-scrollbar {
            height: 6px;
        }

        .cards-scroll-container::-webkit-scrollbar-track {
            background: var(--scrollbar-track);
            border-radius: 3px;
            margin: 0 20px;
        }

        .cards-scroll-container::-webkit-scrollbar-thumb {
            background-color: var(--scrollbar-thumb);
            border-radius: 3px;
            border: none;
        }

        .cards-scroll-container::-webkit-scrollbar-thumb:hover {
            background-color: #3aa8ff;
        }

        .scroll-wrapper {
            display: flex;
            width: max-content;
            padding: 10px 0;
            animation: scrollCards 30s linear infinite;
        }

        @keyframes scrollCards {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .cards-container {
            display: flex;
            flex-wrap: nowrap;
            gap: 40px;
            padding: 10px 20px;
        }

        .hexagon-card {
            position: relative;
            width: 280px;
            height: 320px;
            flex-shrink: 0;
            perspective: 1200px;
            cursor: pointer;
        }

        .hexagon-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .hexagon-card-inner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            z-index: -1;
        }

        .hexagon-card:hover .hexagon-card-inner {
            transform: rotateY(180deg);
        }

        .hexagon-card-front, .hexagon-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow: hidden;
        }

        .hexagon-card-front {
            color: white;
        }

        .teacher-img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid rgba(255, 255, 255, 0.3);
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            transition: transform 0.5s;
        }

        .hexagon-card:hover .teacher-img {
            transform: scale(1.08);
        }

        .teacher-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
        }

        .teacher-subject {
            font-size: 1.25rem;
            color: #ddd;
            font-weight: 400;
        }

        .teacher-id {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        .hexagon-card-back {
            background: linear-gradient(45deg, #1a2a6c, #2c3e50);
            color: white;
            transform: rotateY(180deg);
        }

        .teacher-role {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--accent);
            font-weight: 600;
        }

        .teacher-email {
            font-size: 1.1rem;
            word-break: break-all;
            margin-bottom: 20px;
            background: rgba(0, 0, 0, 0.25);
            padding: 10px;
            border-radius: 10px;
            font-weight: 400;
        }

        .teacher-bio {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            font-weight: 300;
            padding: 0 10px;
        }

        .social-icons {
            display: flex;
            gap: 25px;
            justify-content: center;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.55rem;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .social-icon:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .instagram { background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045); }
        .phone { background: linear-gradient(45deg, #00c853, #1e88e5); }
        .whatsapp { background: linear-gradient(45deg, #25d366, #128c7e); }

        .notification {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--success);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            z-index: 1000;
            display: none;
            animation: fadeInOut 3.5s forwards;
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        @keyframes fadeInOut {
            0% { opacity: 0; transform: translateX(-50%) translateY(30px); }
            20% { opacity: 1; transform: translateX(-50%) translateY(0); }
            80% { opacity: 1; transform: translateX(-50%) translateY(0); }
            100% { opacity: 0; transform: translateX(-50%) translateY(30px); }
        }

        @media (max-width: 1100px) {
            #quote {
                font-size: 2.2rem;
            }
            
            .hexagon-card {
                width: 250px;
                height: 290px;
            }
            
            .teacher-img {
                width: 125px;
                height: 125px;
            }
            
            .teacher-name {
                font-size: 1.3rem;
            }
            
            .teacher-role {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            #quote {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .header {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .scroll-wrapper {
                animation-duration: 40s;
            }
        }

        @media (max-width: 576px) {
            .quote-container {
                padding: 50px 15px;
            }
            
            #quote {
                font-size: 1.6rem;
            }
            
            #author {
                font-size: 1.3rem;
            }
            
            .section-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .section-title {
                font-size: 2rem;
                padding: 0;
            }
            
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .scroll-wrapper {
                animation: none;
            }
        }

        @media (max-width: 500px) {
            .hexagon-card {
                width: 252px; 
                height: 288px; 
            }
            
            .teacher-img {
                width: 126px; 
                height: 126px;
            }
            
            .teacher-name {
                font-size: 1.1em; 
            }
            
            .teacher-subject {
                font-size: 1.125rem; 
            }
            
            .teacher-role {
                font-size: 1.35rem; 
            }
            
            .teacher-email {
                font-size: 0.99rem; 
            }
            
            .teacher-bio {
                font-size: 0.9rem; 
            }
        }

        
        footer {
            text-align: center;
            padding: 40px;
            margin-top: 60px;
            font-size: 1.2rem;
            color: #aaa;
            background: rgba(0, 0, 0, 0.4);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        
        .touch-scroll {
            animation: none !important;
        }