body, html {
  margin: 0;
  padding: 0;
 overflow-x: hidden;
}

.site-container {
  position: relative;
  width: 100vw;
  height: 100vh;
}


.background-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.pot-section2 img {
    width: 80%;
    height: 83vh;
    object-fit: cover;
}
.pot-section2{
  width: 100%;
}

.site-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #52645940; /* semi-transparent color */
  backdrop-filter: brightness(70%);
  pointer-events: none;
  z-index: 1;
}
.slide-box {
  position: absolute;
  width: 100px; /* adjust width if needed */
  height: 100px; /* adjust height if needed */
  bottom: -20px;  /* fully aligned to bottom */
  left: -300px; /* start offscreen to the left */
  display: flex;
  flex-direction: column;
  z-index: 10;
  margin-left: -20px;
  animation: slideInBox .8s linear forwards;

}

.top-half {
    margin-left: 50px;
  height: 40%;
  width: 50%;
  background-color: black;
}

.bottom-half {
 height: 40%;
  width: 50%;
  background-color: white;
}

@keyframes slideInBox {
  to {
    left: 20px; /* lands near bottom-left */
  }
}





.slide-box-right {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -57px;         /* stick to bottom */
  right: -220px;     /* start offscreen to the right */
  display: flex;
  flex-direction: column;
  z-index: 10;
  margin-right: -60px;
  animation: slideInFromRight .8s linear forwards;
}


.bottom-half-right {
  height: 50%;
  width: 50%;
  background-color: white;
  padding-top: 0px;
  z-index: 20;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; /* Show pointer on hover */
}


@keyframes slideInFromRight {
  to {
    right: 10px; /* final position from right edge */
  }
}


.scroll-down-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 128px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 100;
}

.arrow-icon {
  display: block;
  width: 10px;  /* small arrow */
  height: 10px;
  border: solid black;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  pointer-events: none; /* Make arrow itself ignore pointer events */

}

@keyframes bounceDown {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(5px);
  }
}






/* Fixed transparent navbar */
.pt-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: background-color 0.3s ease;
  background-color: transparent;
  color: white;
  font-family: sans-serif;
  border-bottom: 1px solid rgb(191, 190, 190);
}

/* Add black bg on scroll */
.pt-navbar.scrolled {
  background-color: black;
}

/* Internal container layout */
.pt-navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

/* Logo */
.pt-logo {
  font-size: 2rem;
  font-weight: 300;
}

/* Navigation links */
.pt-nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  padding: 0;
  margin: 0;
  font-weight: 100; 
}

.pt-nav-links li {
  cursor: pointer;
  
}

/* Right-aligned items */
.pt-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pt-contact-btn {
  padding: 10px 15px;
  border: 1px solid rgb(233, 233, 233);
  background: transparent;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.pt-cart {
  font-weight: normal;
}





.pt-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  z-index: 5;
  pointer-events: none; /* Allows clicks to pass through except content */
}

/* Animation keyframes */
@keyframes ptSlideUpFade {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animation trigger class */
.pt-animate-hero {
  animation: ptSlideUpFade 1s ease-out forwards;
}

/* Hero content layout */
.pt-hero-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 40px 50px;
  padding-top: 0px;
  box-sizing: border-box;
  pointer-events: auto; /* Enables interaction with inputs and buttons */
}

/* Left side text */
.pt-hero-left {
  width: 30%;
}

.pt-hero-left h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 100;
  margin-top: 0px;
}

.pt-hero-left p {
  font-size: 1.2rem;
  line-height: 1;
}

/* Right side form */
.pt-hero-right {
  width: 44%;
}

.pt-hero-right h2 {
  margin-top: 0px;
  font-size: 2.6rem;
  margin-bottom: 10px;
  text-align: right;
  font-weight: 100;
}

.pt-hero-right p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: right;
}

/* Input with arrow button */
.pt-phone-input-wrapper {
    display: flex;
    border: 1px solid white;
    padding: 3px;
    max-width: 500px;
}
.pt-phone-input {
  flex: 1;
  border: none;
  background: transparent;
  color: white;
  font-size: 12px;
  outline: none;
}

.pt-phone-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.pt-phone-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}




@keyframes slideUpFadeIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.message-overlay-box {
  background-color: transparent;
  color: #ffffff;
  padding: 35px;
  z-index: 999;
  position: absolute;
  bottom: 10px;
  display: flex;
  gap: 240px;
  margin-left: 20px;

  /* Animation */
  animation: slideUpFadeIn 1s ease-out forwards;
}


.pottery-section{
  padding-top: 100px;
  display: flex;
  padding-left: 30px;
  width: 100%;
  gap: 20px;
  margin-bottom: 50px;
}
.pot-section1a {
  display: flex;
  gap: 20px;
  padding-bottom: 220px;
  opacity: 0;
  transform: translateX(-100px); /* Start off-screen left */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Add this class when element is visible */
.pot-section1a.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.pot-section1{
  width: 100%;
}

.pot-section2{
  width: 100%;
}

.pot-section1a p{
  max-width: 180px;
  color: grey;

}
.pot-section1a h2{
  font-size: 3rem;
  max-width: 400px;
  font-weight: 100;
  margin-top: 10px;
}
/* Initially hidden and offset to the left */
.pot-section1b {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  display: flex;
  position: relative; /* Needed for absolutely positioned <p> */
}

/* Triggered when in view */
.pot-section1b.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.pot-section1b p {
    left: 64%;
    position: absolute;
    max-width: 191px;
    color: grey;
}

.carousel-wrapper {
  width: 600px;
  margin: 0 auto;
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.nav-button {
  background-color: white;
  border: 1px solid #ccc;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}




/* Carousel-area */

.carousel-container {
 
  width: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.carousel-track-container {
  overflow: hidden;
  width: 380px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  display: flex;
  min-width: 600px; /* width of two images combined */
  gap: 10px;
  
}

.carousel-slide img {
    width: 175px;
    height: 30vh;
    margin-right: 5px;
    margin-left: 5px;
    display: block;
}

.nav-button {
    background-color: white;
    border: 1px solid #ccc;
    font-size: 34px;
    cursor: pointer;
    padding: 1px 15px;
    position: absolute;
    z-index: 1;
    /* top: 170%;
    left: 10%; */
}


#nextBtn {
    top: -30%;
    left: 11%;
}
#prevBtn{
   top: -30%;
    left: 3%;
}


/* ====== */
.workshop-section {
  opacity: 0;
  transform: translateX(-100px); /* Start off-screen to the left */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


.workshop-section.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.workshop-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-left: 10px;
}

.left-text {
  max-width: 700px;
  z-index: 2;
  margin-top: 20px;
  display: flex;
}

.section-number {
  font-style: italic;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.left-text h2 {
    font-size: 30px;
    line-height: 1;
    margin: 21px 0px 20px;
    font-weight: 100;
}
.left-text p {
  font-family: 'Arial', sans-serif;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
}

.right-decor {
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 1;
}

.decor-text {
  font-size: 100px;
  color: #000000;
  opacity: 1;
  font-style: italic;
  white-space: nowrap;
  letter-spacing: -4px;
  pointer-events: none;
}


.workshop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 40px;
  box-sizing: border-box;
  background-color: #fff;

  /* Fade-in setup */
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.workshop-grid.fade-in {
  opacity: 1;
}


.workshop-item {
  text-align: left;
  font-family: 'Georgia', serif;
   overflow: hidden; /* Prevent image from spilling outside */
}

.workshop-item img {
  width: 100%;
  height: 50vh;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease; /* Smooth animation */
}

.workshop-item:hover img {
  transform: scale(1.05); /* Zoom in slightly */
}
.workshop-item h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  font-weight: normal;
}

.workshop-item p {
  font-size: 16px;
  color: #666;
  font-family: 'Arial', sans-serif;
}


::-webkit-scrollbar{
  display: none;
}

/* FIXED POTTERY GALLERY STYLES */
.pt-pottery-gallery {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  padding: 60px 20px;
  overflow: hidden;
}

/* SINGLE UNIFIED .pt-pottery-card RULE - NO DUPLICATE */
.pt-pottery-card {
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: 400px;
  min-width: 280px;
  /* IMPORTANT: Start hidden - NO automatic animations */
  opacity: 0;
  transform: translateY(70px);
  /* REMOVED: animation property - let JavaScript control it */
}

/* Animation classes - ONLY triggered by JavaScript scroll */
.pt-pottery-card.animate {
  animation: pt-slide-up 1s ease forwards;
}

.pt-pottery-card.animate:nth-child(1) {
  animation-delay: 0.1s;
}
.pt-pottery-card.animate:nth-child(2) {
  animation-delay: 0.3s;
}
.pt-pottery-card.animate:nth-child(3) {
  animation-delay: 0.5s;
}

.pt-pottery-img {
  width: 100%;
  height: 80vh;
  display: block;
  z-index: 0;
  position: relative;
  object-fit: cover;
}

.pt-pottery-img1 {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}



.pt-pottery-img0 {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.pt-pottery-img-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}



.pt-pottery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background:rgb(255 255 255 / 100%); /* semi-transparent background */
  text-align: center;
  font-size: 1rem;
  margin: 0;
  color: #333;
  box-sizing: border-box;
}

@keyframes pt-slide-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Corner white angle overlays - HIDDEN initially */
.pt-angle-overlay.pt-bottom-left-angle {
  position: absolute;
  width: 60px;
  height: 55px;
  background-color: white;
  bottom: 0;
  left: 0;
  z-index: 1;
  /* IMPORTANT: Hidden initially - NO automatic animation */
  transform: translateX(-100%);
}

/* ONLY animate when .animate class is added by JavaScript */
.pt-angle-overlay.pt-bottom-left-angle.animate {
  animation: slideInFromLeft 1s ease-out forwards;
  animation-delay: 0.7s;
}

@keyframes slideInFromLeft {
  to {
    transform: translateX(0);
  }
}

.pt-angle-overlay.pt-right-angle {
  position: absolute;
  width: 60px;
  height: 55px;
  background-color: white;
  top: 0;
  right: 0;
  z-index: 1;
  /* IMPORTANT: Hidden initially - NO automatic animation */
  transform: translate(100%, -100%);
}

/* ONLY animate when .animate class is added by JavaScript */
.pt-angle-overlay.pt-right-angle.animate {
  animation: slideInFromTopRight 1s ease-out forwards;
  animation-delay: 0.9s;
}

@keyframes slideInFromTopRight {
  to {
    transform: translate(0, 0);
  }
}




.discovery-section{
  display: flex;
  
  width: 100%;;
  gap: 10px;
}
.discovery-section1{
  width: 50%;
  transition: transform 1s ease, opacity 1s ease;
  padding-top: 30px;
}
.hidden-left {
  transform: translateX(-100px);
  opacity: 0;
}

/* Final state after entering viewport */
.show-left {
  transform: translateX(0);
  opacity: 1;
}
.discovery-section2 {
  width: 50%;

  /* Fade-in animation setup */
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.discovery-section2.fade-in {
  opacity: 1;
}

.disc-section1 {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.disc-section1.fade-in {
  opacity: 1;
}



.discovery-section1 span{
  margin-left: 30px;
  font-size: 18px;
}
.discovery-section1 h2{
  padding-left: 40px;
  font-weight: 100;
  line-height: 1;
  font-size: 40px;

}
.discovery-section1 p{
  padding-left: 40px;
  max-width: 400px;
  color: grey;
}
.discovery-section1 button{
  margin-left: 40px;
  padding: 13px 30px;
  background-color: grey;
  border: none;
}

.disc-section{
  display: flex;
  width: 100%;
  padding-left: 60px;
}




.tp-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}

.tp-card {
  width: 300px;
  
  background-color: white;
  text-align: left;
  overflow: hidden;
}

.tp-img {
  width: 100%;
  display: block;
}

.tp-info {
  padding: 20px;
}

.tp-name {
  font-size: 20px;
  margin: 0 0 5px 0;
}

.tp-role {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  margin: 0;
}



.tp-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 40px;
  padding-left: 0px;
  
}

.tp-card {
  position: relative;
  width: 280px;
  overflow: hidden;
}

.tp-img {
  width: 100%;
  display: block;
}

.tp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
  padding: 15px 20px;
  max-width: 90%;
}

.tp-name {
  font-size: 20px;
  margin: 0 0 5px 0;
  font-weight: normal;
}

.tp-role {
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  margin: 0;
}


.faq-wrapper {
  max-width: 550px;
  margin: auto;
  transition: transform 1s ease, opacity 1s ease;
}

.hidden-right {
  transform: translateX(100px);
  opacity: 0;
}

.show-right {
  transform: translateX(0);
  opacity: 1;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
  background: none;
  border: none;
  font-size: 20px;
  padding: 30px 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 20px;
  font-size: 16px;
  color: #333;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}


.disc-section2{
  padding-top: 50px;
}






#testimonial-section {
  padding: 120px 0;
  position: relative;
  background: white;
  overflow: hidden;
}

/* Floating big texts */
.floating-text {
  position: absolute;
  font-size: 8vw;
  font-family: 'Georgia', serif;
  font-style: italic;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 1s ease;
}

.floating-text.animate {
  transform: translateX(0);
  opacity: .9;
}

.client-text {
  position: absolute;
  top: 70px;
  right: 30px;
  color: black;
  text-align: right;
  font-weight: 100;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  padding: 15px 20px;
  border-radius: 0px;
  padding-top: 20px;
  

  
}


.review-text {
  bottom: 100px;
  left: 30px;
  color: black;
  font-weight: 100;




   background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  padding: 15px 20px;
  padding-top: 50px;
  border-radius: 0px;
}

/* Overlays for fade effect */
.fade-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.fade-overlay.left {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.fade-overlay.right {
  right: 0;
  background: linear-gradient(to left,white, transparent);
}



/* Testimonial scrolling rows */
.testimonial-row {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}

.testimonial {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  width: 550px;
  min-width: 350px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.testimonial img {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  flex: 1; /* take up remaining space */
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%; /* Ensures it doesn't overflow */
  box-sizing: border-box;
}

.testimonial .name {
  font-size: 1.2em;
  font-family: 'Georgia', serif;
  color: #333;
}

.testimonial .title {
  text-transform: uppercase;
  font-size: 0.85em;
  color: #777;
  margin-top: 6px;
}

.testimonial p {
  margin-top: 43px;
  color: lightslategrey;
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 0;
  white-space: normal; /* Forces wrapping */
  word-break: break-word; /* Breaks long words */
 margin-left: -60px;

}






.ceramics-section {
  padding: 100px 60px 80px;
  background: #fdf7ee;
  
  /* Move-up animation */
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
}

.ceramics-section.animate {
  opacity: 1;
  transform: translateY(0);
}


.ceramics-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  
  
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.title-block {
  flex: 1;
  min-width: 320px;
}

.section-number {
  font-style: italic;
  font-size: 1rem;
  color: #555;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 10px 0 0;
}

.section-header h2 em {
  font-style: italic;
  font-weight: 400;
}

.subtitle {
    flex: 1;
    max-width: 358px;
    font-size: 1rem;
    color: #666;
    margin-top: 34px;
    line-height: 1.5;
}

.product-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.product {
  max-width: 220px;
  text-align: left;
}

.product img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
  height: 35vh;

}
.pro{
  border-top: 1px solid grey;
  display: flex;
  gap: 10px;
}
.product h3 {
   
  font-weight: 600;
  font-size: 1rem;
  padding-top: 14px;
  margin: 0 0 5px;
}

.price {
  font-size: 0.95rem;
  color: #222;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  margin-left: 8px;
}








.color-ceramics-section {
  padding: 80px 0px 100px;
  padding-top: 40px;
  padding-bottom: 20px;
  background: #fdf7ee;

  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  
}

.color-ceramics-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.color-ceramics-section .product-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.color-ceramics-section .product {
  max-width: 220px;
  text-align: left;
}

.color-ceramics-section .product img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}

.color-ceramics-section .product h3 {
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0 0 5px;
  line-height: 1.4;
}

.color-ceramics-section .price {
  font-size: 0.95rem;
  color: #222;
}

.color-ceramics-section .old-price {
  text-decoration: line-through;
  color: #aaa;
  margin-left: 8px;
}

.blog-section-unique {
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px 20px;
}

    .blog-intro-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .blog-intro-text {
      flex: 1 1 50%;
    }

    .blog-intro-text h2 {
      font-size: 2.5rem;
      font-weight: normal;
      margin-bottom: 10px;
      margin-top: 0px;
      margin-left: 25px;
    }

    .blog-intro-text h2 em {
      font-style: italic;
    }

    .blog-intro-note {
      flex: 1 1 20%;
      font-family: sans-serif;
      color: #777;
      font-size: 1rem;
      line-height: 1.4;
      margin-top: 50px;
    }
    .blog-intro-text p{
      margin-bottom: 0px;
    }
    .blog-showcase-cards {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
    }

    .blog-showcase-card {
      background: #fff;
      flex: 1 1 30%;
      display: flex;
      flex-direction: column;
      gap: 0px;
      overflow: hidden;
    }

    .blog-showcase-card img {
      width: 100%;
      display: block;
     border-radius: 2px;
      transition: transform 0.4s ease;
      cursor: pointer;
    }

    .blog-showcase-card:hover img {
      transform: scale(1.05);
    }

    .blog-showcase-card .date {
      font-family: sans-serif;
      font-size: 0.9rem;
      color: #888;
      margin-top: 15px;
    }

    .blog-showcase-card h3 {
      font-size: 1.4rem;
      font-weight: normal;
      line-height: 1.3;
      margin-top: 0px;
      margin-bottom: 0px;
    }

    .blog-showcase-card .summary {
      font-family: sans-serif;
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
    }

    /* Animation base styles */
    .animate-from-left,
    .animate-from-bottom {
      opacity: 0;
      transition: all 0.8s ease;
    }

    .animate-from-left {
      transform: translateX(-80px);
    }

    .animate-from-left.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .animate-from-bottom {
      transform: translateY(60px);
    }

    .animate-from-bottom.animate {
      opacity: 1;
      transform: translateY(0);
    }

    








.box-rtol-trigger-7xa3 {
  position: absolute;
  bottom: -154px;
  
  width: 45px;
  height: 50px;
  background-color: #fdf7ee;
  transform: translateY(-50%);
  opacity: 0;



    

       
  right: 10px;     /* start offscreen to the right */

  z-index: 10;
 
 
}

.box-rtol-trigger-7xa3.animate {
  animation: moveLeft-7xa3 1s linear forwards;
  opacity: 1;
}

@keyframes moveLeft-7xa3 {
  from {
    right: -17%;
  }
  to {
    right: -20px;
  }
}




/* white-box */

.box-rtol-trigger-copy {
  position: absolute;
  bottom: -105px;

  width: 40px;
  height: 50px;
  background-color: white;
  transform: translateY(-50%);
  opacity: 0;

  right: 1px;
  z-index: 10;
}

.box-rtol-trigger-copy.animate {
  animation: moveLeft-copy 1s linear forwards;
  opacity: 1;
}

@keyframes moveLeft-copy {
  from {
    right: -17%;
  }
  to {
    right: -60px;
  }
}



.ftr-wrp-6qf9 {
  padding: 60px 180px 20px;
  background-color: #000;
  color: white;
  font-size: 14px;
  
}

.ftr-flex-box-6qf9 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0px;
  position: relative;
}

.ftr-col-logo-6qf9 {
  flex: 1 1 250px;
}

.ftr-brand-6qf9 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.ftr-desc-6qf9 {
  line-height: 1.6;
  margin-bottom: 20px;
}

.ftr-icons-6qf9 a {
  color: white;
  margin-right: 15px;
  font-size: 18px;
  text-decoration: none;
}

.ftr-col-links-6qf9 {
  flex: 1 1 150px;
}

.ftr-head-6qf9 {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.ftr-list-6qf9 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftr-list-6qf9 li {
  margin-bottom: 8px;
}

.ftr-list-6qf9 li a {
  color: white;
  text-decoration: none;
}

.ftr-news-6qf9 {
  flex: 1 1 300px;
}

.ftr-news-title-6qf9 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -2px;
  margin-top: 10px;
}
.ftr-icons-6qf9{
  margin-top: 10px;

}

.ftr-news-text-6qf9 {
  margin-bottom: 15px;
  color: #ccc;
}

.ftr-form-6qf9 {
  display: flex;
  border: 1px solid #444;
  max-width: 300px;
}

.ftr-form-6qf9 input {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: white;
}

.ftr-form-6qf9 button {
  background: none;
  border: none;
  color: white;
  padding: 0 15px;
  font-size: 18px;
  cursor: pointer;
}

.ftr-bottom-6qf9 {
  
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #999;
}

.ftr-bottom-6qf9 a {
  color: #999;
  text-decoration: none;
}



.box-unique-trigger-a9x4 {
  position: absolute;
  bottom: 199px;
  width: 45px;
  height: 50px;
  background-color: #f2e4db;
  transform: translateY(-50%);
  opacity: 0; /* Start hidden */
  right: 1px; /* Match animation starting point */
  z-index: 10;
}

.box-unique-trigger-a9x4.animate {
  animation: slideInLeft-a9x4 .6s linear forwards;
  opacity: 1;
}

@keyframes slideInLeft-a9x4 {
  from {
    right: -30%;
  }
  to {
    right: -180px;
  }
}

.box-unique-trigger-a9x4-black {
  position: absolute;
  bottom: 151px;
  width: 49px;
  height: 50px;
  background-color: rgb(255, 255, 255);
  transform: translateY(-50%);
  opacity: 0;
  right: -30%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgb(92, 92, 92);
  cursor: pointer;
  
 
  transition: background-color 0.3s;
}

.box-unique-trigger-a9x4-black:hover {
  background-color: #e0e0e0;
}


.box-unique-trigger-a9x4-black.animate {
  animation: slideInLeft-a9x4-black .8s linear forwards;
  opacity: 1;
}

@keyframes slideInLeft-a9x4-black {
  from {
    right: -30%;
  }
  to {
    right: -135px;
  }
}









@media (min-width: 1400px){

  .background-video {
    width: 100%;
    height: 87vh;
    object-fit: cover;
}
.site-container {
    position: relative;
    width: 100vw;
    height: 87vh;
}
.slide-box {
        position: absolute;
        width: 103px;
        height: 136px;
        bottom: -29px;
    }
.slide-box-right {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: -53px;
    right: -220px;
    margin-right: -60px;
}
.message-overlay-box {
    background-color: transparent;
    color: #ffffff;
    padding: 35px;
    z-index: 999;
    position: absolute;
    bottom: 14px;
    padding-left: 100px;
    padding-right: 85px;
   
}
  
    .pt-hero-content {
        display: flex
;
        justify-content: space-between;
        width: 100%;
        position: absolute;
        top: 170px;
        padding-left: 119px;
        padding-right: 70px;
    }

.scroll-down-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 136px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.pt-phone-input-wrapper {
    display: flex
;
    border: 1px solid white;
    padding: 5px;
    max-width: 469px;
    margin-left: 54px;
} 


.pt-hero-right p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: right;
    margin-left: 40px;
}
.pot-section1{
  padding-left: 100px;
}
.carousel-slide img {
    width: 160px;
    height: 20vh;
    margin-right: 5px;
    margin-left: 5px;
    display: block;
}

.pot-section1b p {
    left: 58%;
    line-height: 19px;
    position: absolute;
    max-width: 191px;
    color: #b7b7b7;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.pot-section1a h2 {
    font-size: 2.5rem;
    max-width: 316px;
    font-weight: 100;
    margin-top: 10px;
}
.pot-section1a p {
    max-width: 280px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color:#b7b7b7;
}
.pottery-section {
    padding-top: 100px;
    display: flex
;
    padding-left: 27px;
    width: 100%;
    gap: 8px;
    margin-bottom: 50px;
}
.pot-section1a {
    display: flex
;
    gap: 8px;
    padding-bottom: 220px;
}



.pot-section2 img {
    width: 42%;
    height: 59vh;
    object-fit: cover;
}
    .pot-section2 img {
        width: 77%;
        height: 59vh;
        object-fit: cover;
    }

.workshop-content {
    display: flex
;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-left: 110px;
}
.left-text p {
    font-family: 'Arial', sans-serif;
    color: #a39f9f;
    font-size: 15px;
    line-height: 1.3;
    max-width: 300px;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 43px 130px;
    box-sizing: border-box;
    background-color: #fff;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.workshop-item img {
    width: 100%;
    height: 32vh;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.discovery-section1 {
    width: 39%;
    transition: transform 1s ease, opacity 1s ease;
    padding-top: 30px;
}
.show-left {
    transform: translateX(0);
    opacity: 1;
    padding-left: 100px;
}
.discovery-section1 h2 {
    padding-left: 40px;
    font-weight: 100;
    line-height: 1;
    font-size: 40px;
    margin-top: 6px;
}
.disc-section {
    display: flex
;
    width: 100%;
    padding-left: 140px;
}
    .pt-pottery-gallery {
        display: flex
;
        align-items: flex-start;
        gap: 30px;
        padding: 60px 20px;
        overflow: hidden;
        height: 44vh;
    }
.pt-pottery-img0 {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}

.pt-pottery-img {
    width: 100%;
    height: 44vh;
    display: block;
    z-index: 0;
    position: relative;
    object-fit: cover;
}
.pt-pottery-card {
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 450px;
    min-width: 280px;
}
.pt-pottery-img1 {
    width: 100%;
    height: 51vh;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}
.pt-pottery-caption {
    position: absolute;
    bottom: 270px;
    left: 0;
    width: 100%;
    color: lightslategrey;
    text-align: start;
}
.ceramics-section{
  padding: 100px 125px 80px;
}
.product-grid {
    display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-right: 30px;
    padding-left: 30px;
}
.product img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
    height: 30vh;
}



.box-rtol-trigger-copy {
  position: absolute;
  bottom: -105px;

  width: 50px;
  height: 50px;
  background-color: white;
  transform: translateY(-50%);
  opacity: 0;

  right: 1px;
  z-index: 10;
}

.box-rtol-trigger-copy.animate {
  animation: moveLeft-copy 1s linear forwards;
  opacity: 1;
}

@keyframes moveLeft-copy {
  from {
    right: -17%;
  }
  to {
    right: -120px;
  }
}



.box-rtol-trigger-7xa3 {
  position: absolute;
  bottom: -154px;
  
  width: 50px;
  height: 50px;
  background-color: #fdf7ee;
  transform: translateY(-50%);
  opacity: 0;



    

       
  right: 10px;     /* start offscreen to the right */

  z-index: 10;
 
 
}

.box-rtol-trigger-7xa3.animate {
  animation: moveLeft-7xa3 1s linear forwards;
  opacity: 1;
}

@keyframes moveLeft-7xa3 {
 from {
    right: -17%;
  }
  to {
    right: -70px;
  }
}



.blog-showcase-card img {
    width: 100%;
    display: block;
    border-radius: 2px;
    transition: transform 0.4s ease;
    cursor: pointer;
    height: 35vh;
}
.box-unique-trigger-a9x4-black {
    position: absolute;
    bottom: 138px;
    width: 60px;
    height: 60px;
}
.box-unique-trigger-a9x4 {
    position: absolute;
    bottom: 199px;
    width: 50px;
    height: 55px;
}

@keyframes slideInLeft-a9x4-black {
  from {
    right: -30%;
  }
  to {
    right: -131px;
  }
}






}