/* Skeleton Base Animation */
@keyframes shimmer {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}

.skeleton-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.skeleton-logo {
  width: 140px;
  height: 40px;
  background: #e0e0e0;
  border-radius: 6px;
  animation: shimmer 1.5s infinite linear;
  background-image: linear-gradient(
    to right,
    #e0e0e0 0%,
    #f8f8f8 50%,
    #e0e0e0 100%
  );
  background-size: 1000px 100%;
}

.skeleton-nav-items {
  display: flex;
  gap: 15px;
}

.skeleton-nav-item {
  width: 90px;
  height: 30px;
  border-radius: 6px;
  background: #e0e0e0;
  animation: shimmer 1.5s infinite linear;
  background-image: linear-gradient(
    to right,
    #e0e0e0 0%,
    #f8f8f8 50%,
    #e0e0e0 100%
  );
  background-size: 1000px 100%;
}

.skeleton-wrapper {
  padding: 30px;
  font-family: sans-serif;
}

/* Banner Section */
.skeleton-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.skeleton-text-group {
  flex: 1;
  padding-right: 40px;
}

.skeleton-heading {
  width: 60%;
  height: 30px;
  margin-bottom: 20px;
  background: #e0e0e0;
  border-radius: 6px;
  animation: shimmer 1.5s infinite linear;
  background-image: linear-gradient(
    to right,
    #e0e0e0 0%,
    #f8f8f8 50%,
    #e0e0e0 100%
  );
  background-size: 1000px 100%;
}

.skeleton-subheading {
  width: 80%;
  height: 20px;
  margin-bottom: 20px;
  background: #e0e0e0;
  border-radius: 6px;
  animation: shimmer 1.5s infinite linear;
  background-image: linear-gradient(
    to right,
    #e0e0e0 0%,
    #f8f8f8 50%,
    #e0e0e0 100%
  );
  background-size: 1000px 100%;
}

.skeleton-button {
  width: 200px;
  height: 40px;
  background: #e0e0e0;
  border-radius: 20px;
  animation: shimmer 1.5s infinite linear;
  background-image: linear-gradient(
    to right,
    #e0e0e0 0%,
    #f8f8f8 50%,
    #e0e0e0 100%
  );
  background-size: 1000px 100%;
}

.skeleton-banner-img {
  width: 400px;
  height: 250px;
  background: #e0e0e0;
  border-radius: 10px;
  animation: shimmer 1.5s infinite linear;
  background-image: linear-gradient(
    to right,
    #e0e0e0 0%,
    #f8f8f8 50%,
    #e0e0e0 100%
  );
  background-size: 1000px 100%;
}

/* Feature Icon Boxes */
.skeleton-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.skeleton-feature-item {
  flex: 1 1 150px;
  height: 100px;
  background: #e0e0e0;
  border-radius: 12px;
  animation: shimmer 1.5s infinite linear;
  background-image: linear-gradient(
    to right,
    #e0e0e0 0%,
    #f8f8f8 50%,
    #e0e0e0 100%
  );
  background-size: 1000px 100%;
}

/* Topper Section */
.skeleton-toppers {
  text-align: center;
}

.skeleton-topper-heading {
  width: 250px;
  height: 25px;
  margin: 0 auto 30px;
  background: #e0e0e0;
  border-radius: 6px;
  animation: shimmer 1.5s infinite linear;
  background-image: linear-gradient(
    to right,
    #e0e0e0 0%,
    #f8f8f8 50%,
    #e0e0e0 100%
  );
  background-size: 1000px 100%;
}

.skeleton-topper-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.skeleton-topper {
  width: 100px;
  height: 140px;
  background: #e0e0e0;
  border-radius: 10px;
  animation: shimmer 1.5s infinite linear;
  background-image: linear-gradient(
    to right,
    #e0e0e0 0%,
    #f8f8f8 50%,
    #e0e0e0 100%
  );
  background-size: 1000px 100%;
}
