.sitemap-container {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #e8f4f8 100%);
  font-family: "Noto Sans Devanagari", "Arial", sans-serif;
  min-height: 100vh;
  position: relative;
}

.sitemap-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.sitemap-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.sitemap-title {
  color: #2c3e50;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 15px;
  padding: 5px;
  background: linear-gradient(45deg, #e67e22, #d35400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.sitemap-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.sitemap-decoration {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}

.decoration-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(45deg, #e67e22, #f39c12);
  animation: pulse 2s infinite;
}

.decoration-circle:nth-child(2) {
  animation-delay: 0.3s;
}

.decoration-circle:nth-child(3) {
  animation-delay: 0.6s;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.sitemap-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.sitemap-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e67e22, #f39c12, #e67e22);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.sitemap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(230, 126, 34, 0.15);
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f8f9fa;
}

.section-icon {
  font-size: 2rem;
  margin-right: 15px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.section-title {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0;
}

.section-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-item {
  margin: 2px 0;
  position: relative;
  padding-left: 5px;
}

.sitemap-link {
  display: flex;
  align-items: center;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sitemap-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(230, 126, 34, 0.1), transparent);
  transition: width 0.3s ease;
}

.sitemap-link:hover {
  color: #e67e22;
  background: rgba(230, 126, 34, 0.05);
  transform: translateX(5px);
}

.sitemap-link:hover::before {
  width: 100%;
}

.sitemap-link:hover .link-bullet {
  color: #e67e22;
  transform: scale(1.3);
}

.link-bullet {
  color: #bdc3c7;
  font-size: 1.5rem;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.sitemap-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sitemap-container {
    padding: 40px 15px;
  }

  .sitemap-title {
    font-size: 2.2rem;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sitemap-card {
    padding: 25px 20px;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }

  .section-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .sitemap-title {
    font-size: 1.8rem;
  }

  .sitemap-subtitle {
    font-size: 1rem;
  }

  .sitemap-card {
    padding: 20px 15px;
  }
}
