body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f3f3f3;
  color: #222;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 0px 0;
}

header {
  position: sticky;
  top: 0;
  background: linear-gradient(to right, #ffcc00, #ff5252);
  z-index: 999;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transform-style: preserve-3d;
  animation: bounceIn 1s ease-in-out;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transform: rotateZ(-3deg);
}

.title-text h1 {
  margin: 0;
  font-size: 2rem;
  color: #222;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.title-text p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #fff;
}

.hero {
  text-align: center;
  background: #fff3e0;
  padding: 20px 20px;
  box-shadow: inset 0 -2px 10px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.hero h2 {
  margin-bottom: 2px;
  font-size: 2rem;
  color: #e65100;
}

audio {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: pulse 2s infinite ease-in-out;
}

.menu-cards {
  background: #fff;
  padding: 40px 0;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  transform-style: preserve-3d;
}




.team-cards {
  background: #fff;
  padding: 40px 0;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  transform-style: preserve-3d;
}











.card {
  width: 220px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: rotateX(5deg) rotateY(5deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact {
  background: #fff8e1;
  padding: 40px 20px;
  text-align: center;
  border-top: 3px solid #ffd54f;
  border-bottom: 3px solid #ffd54f;
}

.contact a {
  color: #e65100;
  text-decoration: none;
  font-weight: bold;
}

footer {
  text-align: center;
  background: #ffe0b2;
  padding: 20px;
  font-size: 0.9rem;
}

.btn-3d {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background: linear-gradient(to bottom, #ff9800, #f57c00);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 0 #e65100;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-3d:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #e65100;
}

/* Animations */
@keyframes bounceIn {
  0% {
    transform: scale(0.9) translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: scale(1.05) translateY(20px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
