* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-video {
  display: none;
}

.mobile-video {
  display: block;
}

@media (min-width: 768px) {
  .desktop-video {
    display: block;
  }

  .mobile-video {
    display: none;
  }
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(220, 38, 38, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.4);
  border-color: rgba(220, 38, 38, 0.8);
  background: rgba(220, 38, 38, 0.15);
}

.card-icon {
  transition: all 0.4s ease;
  background: white;
  padding: 20px;
  border-radius: 20px;
  width: 200px;
  height: 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.card:hover .card-icon {
  transform: scale(1.15);
  background: white;
}

.card-icon img.ekys-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  padding: 5px;
}

.logo-container {
  animation: fadeInDown 1s ease-out;
}

.cards-container {
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  color: white;
}

.logo-container h1,
.logo-container p {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.logo-container {
  will-change: transform, opacity;
}

.school-logo {
  background: white;
  padding: 20px;
  border-radius: 50%;
  display: inline-block;
}

.card-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

.coming-soon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.footer {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.social-link {
  transition: all 0.3s ease;
  opacity: 0.9;
}

.social-link:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.social-instagram:hover {
  color: #e4405f;
}

.social-youtube:hover {
  color: #ff0000;
}

.social-linkedin:hover {
  color: #0077b5;
}

.social-website:hover {
  color: #22c55e;
}

.contact-link {
  transition: all 0.3s ease;
}

.contact-link:hover {
  opacity: 1;
  color: white;
}