

.description-overflow {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 576px) {
  /* Apply styles when the screen width is less than 500px */
  .card {
    min-width: 250px; /* Or any specific style you want to apply */
  }
}


#loading-spinner {
  border: 8px solid #f3f3f3; /* Light gray border */
  border-top: 8px solid #3498db; /* Blue border for the spinning effect */
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite; /* Spin animation */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



body.loading {
  overflow: hidden;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* Custom Styles for Frosty Glass Effect */
.glass-bg {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

/* Custom Styles for Indian Flag Lines */
.indian-flag-lines {
  height: 8px;
  display: flex;
  justify-content: space-between;
}

.saffron-line {
  flex: 1;
  background-color: #ff9933; /* Saffron color */
}

.white-line {
  flex: 1;
  background-color: #ffffff; /* White color */
}

.green-line {
  flex: 1;
  background-color: #138808; /* Green color */
}

/* Responsive Padding for Hero Section */
@media (max-width: 639px) {
  .hero-section {
    padding: 8rem 0; /* Adjust the padding as needed for small screens */
  }
}

@media (min-width: 640px) {
  .hero-section {
    padding: 8rem 0; /* Adjust the padding as needed for larger screens */
  }
}

@media (min-width: 768px) {
  .hero-section {
    padding: 12rem 0; /* Adjust the padding as needed */
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 16rem 0; /* Adjust the padding as needed */
  }
}

/* Glide Carousel Container */
.glide {
  position: relative;
  max-width: 100%;
  margin: auto;
}
