#header-container {
    position: fixed; /* Make the header fixed */
    top: 0; /* Position it at the top */
    left: 0; /* Align it to the left */
    width: 100%; /* Make it full width */
    background-color: white; /* Set a background color */
    z-index: 1000; /* Ensure it stays above other content */
    padding: 0px; /* Add some padding for aesthetics */
    
}

body {
    padding-top: 130px; /* Add padding to the top of the body to prevent content from hiding behind the fixed header */
}



/* first background image*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');


/* Slide-Show Hero Section */

.slideshow-hero-section {
  width: 100%;
  height: 700px;
  max-height: 800px;
  position: relative;
  background: #f0f0f0;
  overflow: hidden;
}

.slideshow-hero-section .slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;

}

.slideshow-hero-section .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slideshow-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(34, 34, 60, 0.65) 0%,
    rgba(60, 40, 80, 0.35) 50%,
    rgba(34, 34, 60, 0.65) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.slideshow-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  padding: 48px 36px 36px 36px;
  max-width: 800px;
  width: 90%;
  text-align: center;
}

.slideshow-content h1 {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(34,34,60,0.25);
}

.slideshow-content p {
  font-size: 18px;
  color: #f3f3f3;
  margin-bottom: 24px;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(34,34,60,0.18);
}

.slideshow-content .btn {
  font-size: 18px;
  padding: 12px 32px;
  border-radius: 12px;
  background: #000000;
  color: #ffffff;
  border: none;
  box-shadow: 0 2px 12px rgba(34,34,60,0.10);
  transition: background 0.2s, color 0.2s;
}

.slideshow-content .btn:hover {
  background: #ffffff;
  color: #000000;
}

.slideshow-content .btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Add a fade effect */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}



/* Categories Section */

.handicraft-categories {
  padding: 80px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px; 
  width: 100%;
}

.heading {
  text-align: center;
  font-size: 160px;
  margin-bottom: 20px;
  padding-bottom: 40px;
}


.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px 30px;
  max-width: 1200px;
  width: 100%;
  justify-items: center;
  margin: 0 auto;
}


.category img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #222;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.category-label {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  color: #000000;
  letter-spacing: 1px;
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .category img {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
  .category img {
    width: 120px;
    height: 120px;
  }
}




/* New Arrivals Section */

.new-arrivals-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

/* Heading */
.heading {
  font-size: 32px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

/* Description */
.description {
  margin: 0 0 20px;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

/* Button */
.buttons {
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #ffffff;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Columns */
.columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0;
}

.column {
  flex: 1;
  margin-bottom: 20px;
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column img {
  width: 325px;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 16px;
  border: 4px solid #222;
}

.column h3 {
  font-size: 20px;
  margin: 10px 0 6px 0;
  color: #222;
}

.column p {
  font-size: 15px;
  color: #555;
  margin: 0 0 10px 0;
  text-align: center;
}

.column .btn {
  margin-top: 10px; /* Ensure no extra margin above button */
}

@media (max-width: 900px) {
  .columns {
    flex-direction: column;
    gap: 20px;
  }
  .column {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px auto;
  }
}



/* Testimonial Section  */
.testimonial-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 32px 10px;
}

.testimonial-title {
  text-align: left;
  font-size: 30px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  margin-left: 20px;
}

.message-box {
  padding: 12px 16px;
  
}

.customer-message {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  max-width: 1200px;
  gap: 32px;
  flex: 1 1 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 18px 50px;
}

.customer-text {
  flex: 1;
  min-width: 0;
}

.customer-message img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: 24px;
  border: 2px solid #222;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.customer-message h3 {
  font-size: 15px;
  margin: 10px 0 4px 0;
  color: #222;
}

.address {
  font-size: 13px;
  color: #555;
  margin: 0 0 10px 0;
}

.customer-message .message {
  font-size: 16px;
  color: #333;
  margin: 15px 0 0 0;
  font-style: italic;
}

.more{
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  color: #000000;
  letter-spacing: 1px;
}


/* Responsive adjustments */
@media (max-width: 900px) {
  .customer-message {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 8px;
  }
  .customer-message img {
    margin-left: 0;
    margin-top: 16px;
  }
}



/* Legacy Section styled */
.legacy-section {
  max-width: 1150px;
  margin: 40px auto;
  padding: 32px 10px;
}

.legacy-title {
  text-align: left;
  font-size: 30px;
  margin-bottom: 32px;
  letter-spacing: 1px;
  margin-left: 20px;
}

.legacy-message {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  max-width: 1200px;
  gap: 32px;
  flex: 1 1 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 18px 50px;
}

.legacy-text {
  flex: 1;
  min-width: 0;
}

.legacy-message img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-left: 24px;
  border: 4px solid #222;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.legacy-message h3 {
  font-size: 24px;
  margin: 10px 0 6px 0;
  color: #222;

}

.legacy-text .msg {
  font-size: 16px;
  color: #333;
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .message {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 8px;
  }
  .message img {
    margin-left: 0;
    margin-top: 16px;
    width: 90vw;
    max-width: 320px;
    height: auto;
  }
}