.heroShekhawati {
  height: 85vh;
  min-height: 600px;
  background: url('../images/destinations/Shekhawati.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 1.2s ease-out;
}


.hero-Shekhawati-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
  padding: 0 20px;
  animation: slideUpFade 1s ease-out 0.2s both;
}

.heroShekhawati h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 0 8px 20px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.heroShekhawati p {
  font-size: 1.25rem;
  margin: 15px 0;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.heroShekhawati-buttons {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


.heroShekhawati-cards {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 900px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.heroShekhawati-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(12px);
  padding: 22px 18px;
  width: 180px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  animation: cardFadeInUp 0.5s ease forwards;
  opacity: 0;
}

.heroShekhawati-card:nth-child(1) { animation-delay: 0.1s; }
.heroShekhawati-card:nth-child(2) { animation-delay: 0.2s; }
.heroShekhawati-card:nth-child(3) { animation-delay: 0.3s; }
.heroShekhawati-card:nth-child(4) { animation-delay: 0.4s; }

.heroShekhawati-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.heroShekhawati-card:hover::before {
  left: 100%;
}

.heroShekhawati-card i {
  display: block;
  margin-bottom: 12px;
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.heroShekhawati-card p {
  font-size: 0.95rem;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.heroShekhawati-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: linear-gradient(135deg, #C68642, #b06d32);
  box-shadow: 0 25px 35px -12px rgba(198, 134, 66, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
}

.heroShekhawati-card:hover i {
  transform: scale(1.1) rotate(3deg);
}

.heroShekhawati-card:hover p {
  transform: translateY(2px);
  letter-spacing: 0.8px;
}

.heroShekhawati-card:active {
  transform: translateY(-5px) scale(0.98);
  transition: transform 0.1s ease;
}

@media (max-width: 1024px) {
  .heroShekhawati h1 { 
    font-size: 3rem; 
  }
}

@media (max-width: 768px) {
  .heroShekhawati { 
    height: 75vh; 
    min-height: 580px; 
  }
  
  .heroShekhawati h1 { 
    font-size: 2.2rem; 
  }
  
  .heroShekhawati p { 
    font-size: 1rem; 
  }
  
  .heroShekhawati-cards {
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    justify-content: center;
  }
  
  .heroShekhawati-card {
    width: 115px;
    padding: 18px 12px;
    border-radius: 24px;
  }
  
  .heroShekhawati-card i {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .heroShekhawati-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .heroShekhawati-cards {
    gap: 15px;
  }
  
  .heroShekhawati-card {
    width: 95px;
    padding: 14px 8px;
    border-radius: 20px;
  }
  
  .heroShekhawati-card i {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  
  .heroShekhawati-card p {
    font-size: 0.75rem;
  }
  
  .heroShekhawati-buttons { 
    gap: 12px; 
  }
}

@media (max-width: 375px) {
  .heroShekhawati h1 {
    font-size: 1.8rem;
  }
  
  .heroShekhawati-card {
    width: 75px;
    font-size: 1rem;
    padding: 10px 4px;
  }
  
  .heroShekhawati-card p {
    font-size: 0.6rem;
  }
}