/* src/components/CardCarousel.css */
body {
    background-image: url('../Assets/Background.jpg'); 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.carousel-container {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0; 
  margin-bottom: 20px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 95% !important;
}

.card h3 {
  font-size: 1em;
  margin-bottom: 10px;
  font-weight: 700;
  margin-top: 5px;
  padding-top: 10px;
}

.card p {
  font-size: 1em;
  color: #19224d;
  padding-bottom: 10px;
}
.slick-slide img {
    width: 100%;
}

.slick-dots li button:before {
    line-height: 35px !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;    
}
.slick-dots li button {
    color: #fff !important;
}
@media (max-width: 767px) {
  .memory-down {
    height: 50px;
    padding-top: 8px;
    font-size: 20px;
}
.card{
    padding: 5px;
}
.carousel-container {
    padding: 4px 0;
}
    }