.glassmorphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.gradient-text {
  background: linear-gradient(to right, #e74c3c, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.5);
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0.7;
  transition: transform 0.1s ease;
}

.skeleton {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.handwriting-animation {
  overflow: hidden;
  white-space: nowrap;
  font-family: "Pacifico", cursive;
  border-right: 2px solid;
}

.tilt-effect {
  transition: transform 0.2s ease;
}

.marquee {
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.floating-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  pointer-events: none;
  transition: all 0.2s ease;
}

.floating-label-active {
  transform: translateY(-1.5rem) scale(0.85);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) rotate(-90deg);
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
  overflow: hidden;
}

.scroll-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) rotate(0deg);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  background: linear-gradient(
    135deg,
    var(--amoled-accent-primary),
    var(--amoled-accent-secondary)
  );
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 0, 85, 0.4);
}

.scroll-to-top:hover .scroll-icon-container {
  transform: translateY(-3px);
}

.scroll-to-top.active {
  transform: translateY(0) scale(0.9);
  background: linear-gradient(
    135deg,
    var(--amoled-accent-secondary),
    var(--amoled-accent-primary)
  );
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 0, 85, 0.5);
}

.scroll-to-top.active .scroll-icon-container {
  transform: translateY(2px);
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Accessibility - Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#skeletonLoader {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: linear-gradient(to bottom, #0f1122, #090b1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-content {
  width: 100%;
  max-width: 6xl;
  padding: 3rem 1rem;
  position: relative;
  z-index: 2;
}

/* Cinematic lighting effects */
.ambient-lights {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.light-1 {
  width: 500px;
  height: 500px;
  background: #4158d0;
  top: -10%;
  left: 20%;
  animation-delay: 0s;
}

.light-2 {
  width: 600px;
  height: 600px;
  background: #c850c0;
  bottom: -20%;
  right: 10%;
  animation-delay: -5s;
}

.light-3 {
  width: 300px;
  height: 300px;
  background: #ffcc70;
  top: 50%;
  left: -5%;
  animation-delay: -10s;
}

.light-4 {
  width: 400px;
  height: 400px;
  background: #6366f1;
  bottom: 10%;
  left: 30%;
  opacity: 0.1;
  animation-delay: -15s;
}

/* Grid layout for skeleton items */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Glassmorphism skeleton items */
.skeleton-item {
  height: 16rem;
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards, pulse 2s infinite ease-in-out;
}

.skeleton-item.small {
  height: 12rem;
}

/* Dynamic entry animations with staggered timing */
.grid-3 .skeleton-item:nth-child(1) {
  animation-delay: 0.2s;
}
.grid-3 .skeleton-item:nth-child(2) {
  animation-delay: 0.4s;
}
.grid-3 .skeleton-item:nth-child(3) {
  animation-delay: 0.6s;
}
.grid-2 .skeleton-item:nth-child(1) {
  animation-delay: 0.8s;
}
.grid-2 .skeleton-item:nth-child(2) {
  animation-delay: 1s;
}

/* Skeleton shimmer effect */
.skeleton-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    var(--skeleton-base) 0%,
    var(--skeleton-highlight) 50%,
    var(--skeleton-base) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Inner content placeholder */
.skeleton-content {
  position: relative;
  padding: 1.5rem;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.skeleton-header {
  width: 60%;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-bottom: 1rem;
}

.skeleton-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.skeleton-line {
  height: 0.875rem;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  width: 100%;
}

.skeleton-line:nth-child(2) {
  width: 85%;
}
.skeleton-line:nth-child(3) {
  width: 70%;
}

.skeleton-footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.skeleton-button {
  width: 30%;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

/* Loading indicator */
.loading-text {
  text-align: center;
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s forwards 1.2s;
}

.loading-dots {
  display: inline-flex;
}

.loading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0 2px;
  animation: dotPulse 1.5s infinite ease-in-out;
}

.loading-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Progress bar */
.progress-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 5;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4158d0, #c850c0, #ffcc70);
  animation: progressAnimation 6s ease-in-out forwards;
}

/* Animation keyframes */
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -30px) scale(1.05);
  }
  50% {
    transform: translate(0, 20px) scale(0.95);
  }
  75% {
    transform: translate(-40px, -10px) scale(1);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  20% {
    width: 20%;
  }
  50% {
    width: 60%;
  }
  80% {
    width: 85%;
  }
  100% {
    width: 100%;
  }
}

/* Subtle particle background effect */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}
#welcomeScreen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  transition: all 1s ease;
}

.content-container {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  width: 100%;
}

.school-badge {
  width: 90px;
  height: 90px;
  background-color: #fef3c7;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(254, 243, 199, 0.2);
}

.badge-inner {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.title-container {
  margin-bottom: 2.5rem;
  position: relative;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #f59e0b, #ef4444, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.3s;
}

.subtitle {
  color: #e2e8f0;
  font-weight: 300;
  font-size: 1.125rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.6s;
}

.handwritten-accent {
  font-family: "Caveat", cursive;
  color: #f59e0b;
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: -20px;
  transform: rotate(6deg);
  opacity: 0;
  animation: fadeInRotate 1s forwards 0.9s;
}

#enterButton {
  margin-top: 2rem;
  padding: 0.875rem 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 1.2s;
}

#enterButton:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(239, 68, 68, 0.4);
}

#enterButton: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: 0.5s;
}

#enterButton:hover:before {
  left: 100%;
}

.decorative-circles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  top: -200px;
  left: -200px;
  animation: float 15s ease-in-out infinite;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
  bottom: -150px;
  right: -150px;
  animation: float 20s ease-in-out infinite reverse;
}

.circle-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  top: 50%;
  right: -100px;
  animation: float 25s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, 50px) rotate(5deg);
  }
  50% {
    transform: translate(0, 100px) rotate(10deg);
  }
  75% {
    transform: translate(-50px, 50px) rotate(5deg);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRotate {
  to {
    opacity: 1;
  }
}

.school-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 1.5s;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #e2e8f0;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.info-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }

  .subtitle {
    font-size: 1.25rem;
  }

  .handwritten-accent {
    font-size: 2rem;
    top: -30px;
  }

  .school-badge {
    width: 120px;
    height: 120px;
  }

  .badge-inner {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }
}

/* News Section Category Bar */
#news .glassmorphism {
  background: rgba(255, 255, 250, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

#news .gradient-text {
  background: linear-gradient(to right, #e74c3c, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#news .bg-primary {
  background-color: #e74c3c;
}

#news .bg-secondary {
  background-color: #f39c12;
}

#news .bg-accent {
  background-color: #8e44ad;
}

#news .text-primary {
  color: #e74c3c;
}

#news .text-accent {
  color: #8e44ad;
}

#news .text-secondary {
  color: #f39c12;
}

#news .dark .text-primary {
  color: #e74c3c;
}

#news .dark .text-secondary {
  color: #f39c12;
}

#news .dark .text-accent {
  color: #8e44ad;
}

#news .dark .bg-primary {
  background-color: #e74c3c;
}

#news .dark .bg-secondary {
  background-color: #f39c12;
}

#news .dark .bg-accent {
  background-color: #8e44ad;
}

#news .dark .glassmorphism {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#news .dark .glassmorphism {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#news .category-icon {
  transition: all 0.3s ease;
}

#news .category-icon:hover {
  transform: scale(1.1);
}

#news .category-label {
  font-size: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#news .category-icon:hover + .category-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

#news .category-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #111;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  z-index: 10;
}

#news .category-icon:hover + .category-label {
  opacity: 1;
  visibility: visible;
}

#news .glassmorphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

#news .glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#news .gradient-text {
  background: linear-gradient(to right, #e74c3c, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#news .dark .gradient-text {
  background: linear-gradient(to right, #f39c12, #e74c3c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Advanced typing animation styles */
.typing-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.typing-cursor {
  display: inline-block;
  width: 0.1em;
  height: 1.2em;
  background-color: white;
  margin-left: 0.1em;
  animation: typingCursorBlink 0.8s ease-in-out infinite;
  vertical-align: middle;
  position: relative;
  border-radius: 1px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes typingCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.typing-cursor-container {
  transition: opacity 0.3s ease;
}

.typing-cursor-container.active {
  opacity: 1;
}

.typing-cursor-line {
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Fade out effect */
.typed-fade-out {
  opacity: 0;
  animation: fadeOut 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Smooth character-by-character fade in */
.ti-text-char {
  animation: fadeIn 0.2s ease-out forwards;
  opacity: 0;
}

/* Smooth line animation for typing progress */
@keyframes lineProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* Subtle highlight effect for newly typed characters */
.ti-text-char.is-highlighted {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  transition: text-shadow 0.3s ease;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .typing-container {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .typing-cursor-line {
    height: 2px;
  }
}

/* Ensure smooth animation for typed text */
.typed-element {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Advanced responsive styling for #typedText */
#typedText {
  font-size: clamp(2rem, 5vw, 4rem); /* Responsive from mobile to desktop */
  line-height: 1.2;
  min-height: 1.5em; /* Ensure consistent height for the container */
  display: inline-block; /* Better text alignment */
  padding: 0.2em 0; /* Add some padding for the text */
  margin: 0 auto 0.5rem;
  position: relative; /* For proper cursor positioning */
  overflow: visible; /* Allow cursor to be visible */
  border: none; /* Remove any border that might interfere */
  will-change: contents; /* Optimize for animation */
  transition: all 0.3s ease; /* Smooth transitions */
  text-align: center;
  width: 100%;
  letter-spacing: -0.01em; /* Slightly tighter letter spacing for better readability */
}

/* TypeIt instance styling */
.ti-cursor {
  position: relative;
  color: white;
  font-weight: 300;
  display: inline-block;
  opacity: 1;
  margin-left: 0.1em;
  animation: typingCursorBlink 0.8s ease-in-out infinite;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Ensure proper spacing between characters */
.ti-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}
/* Welcome screen logo animation */
.welcome-screen .school-logo {
  animation: pulse 3s infinite alternate;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
  }
  100% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  }
}
.footer .school-logo {
  width: 50px;
  height: 50px;
}
/* School Logo Styles */
.school-logo {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 50%;
  object-fit: contain;
}

/* Logo hover effects */
.school-logo:hover {
  transform: scale(1.05);
}

/* Mobile-friendly logo sizes */
@media (max-width: 768px) {
  .header .school-logo {
    width: 40px;
    height: 40px;
  }

  .welcome-screen .school-logo {
    width: 80px;
    height: 80px;
  }

  .footer .school-logo {
    width: 40px;
    height: 40px;
  }
}
