*{
  padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* body{
padding-top: 110px;
} */

body {
  background-color: #f7f7f7;
  color: #333;
  /* overflow-x: hidden; */
}

/* ******************** */
#shop-section-home {
  text-align: center;
  padding: 10px 20px;
  /* border: 2px solid red; */
  /* background-color: #FFB6C1; */

}
#shop-section-home h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}
#categories-container-home {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 0 auto;
  padding: 0 20px;
  /* border: 2px solid red; */
  /* height: max-content; */

  /* max-width: 1000px; */
}
.category-card-home {
  position: relative;
  background: #E0E0E0;
  border-radius: 15px;
  /* overflow: hidden; */
  cursor: pointer;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* height: max-content; */
}
.category-card-home:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}
.category-card-home::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0));
  transform: rotate(45deg);
  transition: opacity 0.4s ease;
}
.category-card-home:hover::before {
  opacity: 1;
}
.category-image-home {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.category-card-home  a{
  text-decoration: none;
}
.category-card-home h3 {
  font-size: 20px;
  /* color: #ff66b2; */
  color:#ff6b35 ;
  margin: 10px 0 5px 0;
  transition: color 0.3s ease;
}
/* .category-card-home:hover h3 {
  color:#00CFFF ;

} */
.category-card-home p {
  font-size: 14px;
  color:#333 ;
  padding: 0 10px 15px;
}

/*  */
.carousel-item {
  position: relative; /* Ensure the container is positioned relative */
}

.carousel-item img {
   height: 550px;
}

.carousel-item h2,
.carousel-item p {
  position: absolute; /* Position the text absolutely */
  top: 50%; 
  /* left: 50%; Center horizontally */
  transform: translate(-50%, -50%); /* Adjust for the text's width and height */
  text-align: center; /* Center align the text */
  z-index: 10; /* Ensure text is above the image */
}

.carousel-item h2{
  top: 30%;
  left: 38%;
  background: linear-gradient(110deg, #FFD700, #A3E635, #FF66B2, #C084FC, #F7F7F7, #E0E0E0, #FFB6C1, #FF6B35, #00CFFF, #FF66B2);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
  transition: transform 0.5s ease-in-out;
  animation-delay: 1s;
  animation: pop-uph2 0.9s ease forwards;
}
.carousel-item p {
  transition: transform 0.5s ease-in-out;
  animation: pop-up 0.6s ease forwards;
  animation-delay: 0.3s;
  max-width: 70vw;
left: 15%;
  margin-top: 20px; 
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); 
color: #f7f7f7;
}
/* animation */
@keyframes pop-up {
  0% {
      transform: translateY(-50px); 
      font-size: 1rem;
      opacity: 0; 
  }
  100% {
      transform: translateY(0); 
      font-size: 1.8rem; 
      opacity: 1; 
  }
}

@keyframes pop-uph2 {
  0% {
      transform: translateY(-50px); 
      font-size: 1.5rem; 
      opacity: 0; 
  }
  100% {
      transform: translateY(0); 
      font-size: 2.5rem; 
      opacity: 1; 
  }
}

.overlay {
  position: absolute; /* Position the overlay absolutely */
  top: 0; /* Align to the top */
  left: 0; /* Align to the left */
  right: 0; /* Stretch to the right */
  bottom: 0; /* Stretch to the bottom */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  z-index: 1; /* Ensure the overlay is above the image but below the text */
}
/*  */
/*  */

/* Responsive design */
@media (max-width: 768px) {
  .category-card-home h3 {
      font-size: 18px;
  }
}
/*  b  */
/* body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
} */
/* body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
} */
.containert {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 20px;
}
.sectiont {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.sectiont.in-viewt {
  opacity: 1;
  transform: translateY(0);
}
.sectiont img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.sectiont .overlayt {
  position: relative;
  text-align: center;
  color: white;
}
.sectiont .overlayt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.sectiont .overlayt h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2em;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 2;
  overflow: hidden;
  border-right: .15em solid orange;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .05em;
  width: 0;
  animation: none;
}
.sectiont.in-viewt .overlayt h2 {
  animation: typingt 3.5s steps(40, end) forwards, blink-carett .75s step-end infinite;
}
.sectiont .contentt {
  padding: 20px;
}
.sectiont .contentt p, .sectiont .contentt ul {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}
.sectiont .contentt ul {
  list-style-type: disc;
  padding-left: 20px;
}
.sectiont .contentt ul li {
  margin-bottom: 10px;
}
.sectiont .contentt p {
  margin-bottom: 20px;
  color: #555;
}
.sectiont .contentt strong {
  color: #007BFF;
}
.sectiont .contentt ul li {
  margin-bottom: 10px;
  color: #555;
}
.sectiont .contentt ul li strong {
  color: #007BFF;
}
@keyframes fadeInt {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
@keyframes typingt {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink-carett {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}
@media (max-width: 768px) {
  .sectiont .overlayt h2 {
      font-size: 1.5em;
  }
}
/* ************************ */

.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 40px;
  position: relative;
  overflow: hidden;
}
.footer::before, .footer::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  animation: animate 20s linear infinite;
}
.footer::after {
  animation-delay: 10s;
}
@keyframes animate {
  0% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-100%);
  }
  100% {
      transform: translateY(0);
  }
}
.footer .container1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}
.footer .logo1 {
  flex: 1;
  margin: 20px;
  /* animation: bounce1 2s infinite; */
}
.footer .logo1 img {
  max-width: 250px;
}
@keyframes bounce1 {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-30px);
  }
  60% {
      transform: translateY(-15px);
  }
}
.footer .about1, .footer .quick-links, .footer .contact-info1 {
  flex: 1;
  /* margin: 20px 0; */
}
.footer h3{
  color: #f39c12;
}
.footer .about1 p {
  line-height: 1.6;
}
.footer .quick-links ul, .footer .contact-info1 ul {
  list-style: none;
  padding: 0;
}
.footer .quick-links ul li, .footer .contact-info1 ul li {
  margin-bottom: 10px;
}
.footer .quick-links ul li a, .footer .contact-info1 ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer .quick-links ul li a:hover, .footer .contact-info1 ul li a:hover {
  color: #f39c12;
}
.footer .contact-info1 ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .contact-info1 ul li i {
  margin-right: 10px;
}
.footer .social-icons1 {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.footer .social-icons1 a {
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s;
}
.footer .social-icons1 a:hover {
  color: #f39c12;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 20px;
}
