@charset "UTF-8";
/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Variables */
.shade {
  background-color: #f3780e;
  border-radius: 20px;
  padding: 10px;
}

.newbg {
  display: inline-block;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 50%);
}

.med-shade {
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  background: rgba(203, 240, 204, 0.5);
  padding: 0px;
  transition: box-shadow 0.3s;
}

.categories {
  padding: 4rem 2rem;
  text-align: center;
  background-image: url("./../../images/leavesbg.png");
  background-size: cover;
  background-position: center;
  /* ✅ Responsive Design */
}
@media screen and (max-width: 320px) {
  .categories {
    padding: 2rem 2rem 4rem;
  }
}
.categories .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #f3780e;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .categories .section-title {
    font-size: 1.92rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .categories .section-title {
    font-size: 1.8rem;
  }
}
.categories .section-subtitle {
  font-size: 1rem;
  color: #555;
  width: 35%;
  margin: 0 auto 2.5rem;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .categories .section-subtitle {
    width: 80%;
  }
}
@media screen and (max-width: 320px) {
  .categories .section-subtitle {
    width: 100%;
    font-size: 0.9rem;
    margin: 0 auto 1.5rem;
  }
}
.categories .category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.categories .category-cards .category-card {
  background: #eee;
  border-radius: 12px;
  padding: 0.5rem 1.5rem 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.categories .category-cards .category-card:hover {
  transform: translateY(-5px);
}
.categories .category-cards .category-card .newback {
  display: inline-block;
  padding: 10px;
  border-radius: 20px;
  background: rgb(244.9351778656, 141.7707509881, 52.8648221344);
}
.categories .category-cards .category-card .newback img {
  display: block;
  width: 170px;
  height: 220px;
  border-radius: 10%;
}
@media screen and (max-width: 768px) {
  .categories .category-cards .category-card .newback img {
    width: 150px;
    height: 190px;
  }
}
@media screen and (max-width: 320px) {
  .categories .category-cards .category-card .newback img {
    width: 120px;
    height: 150px;
  }
}
.categories .category-cards .category-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f3780e;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 320px) {
  .categories .category-cards .category-card h3 {
    font-size: 1.4rem;
  }
}
.categories .category-cards .category-card p {
  font-size: 0.95rem;
  color: #666;
  min-height: 65px;
}
@media screen and (max-width: 320px) {
  .categories .category-cards .category-card p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
}
.categories .category-cards .category-card .btn {
  background: #0072b1;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
@media screen and (max-width: 480px) {
  .categories .category-cards .category-card .btn {
    margin-top: 10px;
  }
}
@media screen and (max-width: 320px) {
  .categories .category-cards .category-card .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}
.categories .category-cards .category-card .btn:hover {
  background: #f3780e;
}
@media (max-width: 1024px) {
  .categories .category-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .categories .category-cards .category-card {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .categories .category-cards .category-card {
    width: 220px;
  }
}
@media (max-width: 480px) {
  .categories .category-cards .category-card {
    width: 270px;
    padding: 0.5rem 1rem 1rems;
  }
}
@media (max-width: 320px) {
  .categories .category-cards .category-card {
    width: 220px;
    padding: 0.5rem 1rem 1rems;
  }
}
@media (max-width: 600px) {
  .categories .category-cards {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

/* End of Categories Section *//*# sourceMappingURL=categories.css.map */