/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .8s ease-out, visibility 0s linear .0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Spinner End ***/


/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: .5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 40px;
  height: 40px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.border-secondary {
  transition: 0.5s;
}

.btn.border-secondary:hover {
  background: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
  transition: 0.5s;
  background: var(--bs-white);
  border: 0;
}

.topbar {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 230px 100px;
}

.topbar .top-info {
  font-size: 16px;
  line-height: 0;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.topbar .top-link {
  font-size: 15px;
  line-height: 0;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.topbar .top-link a {
  letter-spacing: 1px;
}

.topbar .top-link a small:hover {
  color: var(--bs-secondary) !important;
  transition: 0.5s;
}

.topbar .top-link a small:hover i {
  color: var(--bs-primary) !important;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
  padding: 10px 14px;
  font-size: 18px;
  transition: .5s;
}

.navbar {
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
  color: #f47100;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    transition: .5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-secondary);
  color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  border-radius: 10px !important;
  transition: .5s;
  opacity: 1;
}

#searchModal .modal-content {
  background: rgba(255, 255, 255, .8);
}

/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
  background: linear-gradient(#000, #000), url(../img/img/img3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel-item {
  position: relative;
}

.carousel-item a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  /* background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7)); */
}

.carousel-control-next,
.carousel-control-prev {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: 1px solid var(--bs-white);
  background: var(--bs-primary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-next {
  margin-right: 20px;
}

.carousel-control-prev {
  margin-left: 20px;
}

.page-header {
  position: relative;
  background: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0)), url(../img/img/bg-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 992px) {

  .hero-header,
  .page-header {
    margin-top: 152px !important;
  }
}

@media (max-width: 992px) {

  .hero-header,
  .page-header {
    margin-top: 80px !important;
  }
}

/*** Hero Header end ***/


/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
  position: relative;
  width: 120px;
  height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
  content: "";
  width: 35px;
  height: 35px;
  background: var(--bs-secondary);
  position: absolute;
  bottom: -10px;
  transform: translate(-50%);
  transform: rotate(45deg);
  background: var(--bs-secondary);

}

/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
  position: relative;
  width: 250px;
  height: 130px;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*** service End ***/


/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
  background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

.fruite .fruite-categorie .fruite-name {
  line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
  transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
  color: var(--bs-secondary);
}

.fruite .fruite-item {
  height: 100%;
  transition: 0.5s;
}

.fruite .fruite-item:hover {
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
  overflow: hidden;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
  transition: 0.5s;
  border: 1px solid black;
}

.fruite .fruite-item .fruite-img img:hover {
  transform: scale(1.3);
}

/*** Fruits End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
  height: 100%;
  transition: 0.5s;
}

.vesitable .vesitable-item:hover {
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
  overflow: hidden;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
  transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
  transform: scale(1.2);
}

.vesitable .owl-stage {
  margin: 50px 0;
  position: relative;
}

.vesitable .owl-nav .owl-prev {
  position: absolute;
  top: -8px;
  right: 0;
  color: #000;
  padding: 5px 25px;
  border: 1px solid #000;
  border-radius: 20px;
  transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
  background: #000;
  color: #fff;
}

.vesitable .owl-nav .owl-next {
  position: absolute;
  top: -8px;
  right: 88px;
  color: #000;
  padding: 5px 25px;
  border: 1px solid #000;
  border-radius: 20px;
  transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
  background: #000;
  color: var(--bs-white);
}

/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
  background: var(--bs-primary);
}

/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
  height: 100%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
  font-size: 60px;
  margin-bottom: 25px;
}

.counter h4 {
  color: var(--bs-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.counter h1 {
  margin-bottom: 0;
}

/*** Facts End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  right: 0;
  color: #000;
  padding: 5px 25px;
  border: 1px solid #000;
  border-radius: 20px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: #000;
  color: #fff;
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 88px;
  color: #000;
  padding: 5px 25px;
  border: 1px solid #000;
  border-radius: 20px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: #000;
  color: #fff;
}

/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
  display: inline-block;
}

.pagination a {
  color: var(--bs-dark);
  padding: 10px 16px;
  text-decoration: none;
  transition: 0.5s;
  border: 1px solid var(--bs-secondary);
  margin: 0 4px;
}

.pagination a.active {
  background-color: var(--bs-primary);
  color: var(--bs-light);
  border: 1px solid var(--bs-secondary);
}

.pagination a:hover:not(.active) {
  background-color: var(--bs-primary)
}

.nav.nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--bs-secondary) !important;
}

/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
  line-height: 35px;
  color: rgba(255, 255, 255, .5);
  transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
  color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
  line-height: 35px;
}

/*** Footer End ***/
.bgcolor {
  background-color: #000;
}

/* css */
.text-purple {
  color: #000;
}

.animated-text {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.animated-text .letter {
  opacity: 0;
  transform: translateY(-50px);
  display: inline-block;
  animation: drop 0.5s forwards;
}

/* Animation */
@keyframes drop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.margin {
  margin-top: 100px;
  margin-bottom: 100px;
}

@media screen and (max-width:768px) {
  .margin {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.background {
  background-color: #000;
}


/* Main video fixed height */
.main-video {
  height: 400px;
  object-fit: cover;
}

.thumb-video {
  height: 190px;
  object-fit: cover;
  cursor: pointer;
}

.main {
  grid-column: main;
  padding: 1.25rem;
}

/* Photo Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  grid-auto-rows: 12.5rem;
  grid-auto-flow: dense;
  gap: 0.75rem;
}

.gallery figure {
  /* container-type: inline-size; */
  container: figure / inline-size;
  overflow: hidden;

  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
}

.gallery img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;

  /* grid-row: 1 / -1; */
  /* grid-column: 1 / -1; */
  grid-area: 1 / 1 / -1 / -1;

  transition: scale 1s ease-in-out;
}

.gallery figure:hover img {
  scale: 1.125;
}

.gallery figcaption {
  grid-area: 1 / 1 / -1 / -1;
  align-self: end;
  z-index: 1;

  padding: 3em 15% 1em 1em;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.3;
  background: linear-gradient(transparent 25%, rgb(0 0 0 / 0.75));
  display: none;
}

@container figure (width > 20rem) {
  .gallery figcaption {
    display: block;
  }
}

.gallery figcaption h3 {
  font-size: 1.0625rem;
}

.gallery figcaption p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (width > 600px) {
  .gallery figure:nth-child(1) {
    grid-area: span 2 / span 2;
  }

  .gallery figure:nth-child(4n + 1) {
    grid-row: span 2;
  }

  .gallery figure:nth-child(4n + 2) {
    grid-column: span 2;
  }
}

/* gallery */
.gallery1 {
  position: relative;
  width: 300px;
  height: 200px;
  transform-style: preserve-3d;
  animation: rotate 35s linear infinite;
}

@keyframes rotate {
  from {
    transform: perspective(1200px) rotateY(0deg);
  }

  to {
    transform: perspective(1200px) rotateY(360deg);
  }
}

.gallery1 span {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 45deg)) translateZ(380px);
}

.gallery1 span img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*  */
/* Container & Section */
.registration-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  border: 2px solid #fff;
  /* box border */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  /* box shadow */
}

.footerbg {
  background-image: url(../img/img/bg-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.footerbg::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #000000e0;
}

/* about us */
/* Header */
.about-header {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fbc2eb, #a6c1ee);
  color: #fff;
  animation: fadeIn 2s ease-in-out;
}

.about-header h1 {
  font-size: 3em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.about-header p {
  font-size: 1.3em;
  font-weight: 500;
}

/* Section Styling */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10%;
  flex-wrap: wrap;
  gap: 30px;
  border-radius: 20px;
  margin: 40px auto;
}

.mission-container,
.vision-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  flex-wrap: wrap;
  gap: 30px;
  background: #000;
  border-radius: 20px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Text Block */
.about-text,
.mission-text,
.vision-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #000;
  position: relative;
}

.mission-text h2,
.vision-text h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
}

/* .about-text h2::after,
.mission-text h2::after,
.vision-text h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  border-radius: 2px;
} */

@media screen and (max-width: 786px) {

  /* .about-text h2::after,
  .mission-text h2::after,
  .vision-text h2::after {
    width: 100%;
    height: 3px;
    bottom: -3px;
  } */

  .about-text h2 {
    font-size: 27px;
    padding-bottom: 10px;
  }

  .mission-text h2,
  .vision-text h2 {
    padding-bottom: 10px;
  }
}

/* Image Block */
.about-image,
.mission-image,
.vision-image {
  flex: 1 1 40%;
  text-align: center;
  overflow: hidden;
}

.animated-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-60px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(60px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s ease-out;
}

.slide-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {

  /* .about-container,
  .mission-container,
  .vision-container {
    flex-direction: column;
    text-align: center;
  } */

  .about-text,
  .mission-text,
  .vision-text {
    animation: fadeIn 2s ease;
  }
}

/*  */
.marquee {
  --duration: 40s;
  /* lower = faster */
  --gap: var(--space, 2rem);

  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  transform: skewY(-3deg);
  /* optional soft edges */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
  will-change: transform;
}

/* Remove this if your OS/browser has “reduce motion” ON, or override it */
@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee__group img {
  max-width: clamp(10rem, 1rem + 28vmin, 20rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.marquee__group p {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 2vmin, 2.25rem);
  /* background-image: linear-gradient(75deg, hsl(240 70% 49%), hsl(253 70% 49%), hsl(267 70% 49%),
      hsl(280 71% 48%), hsl(293 71% 48%), hsl(307 71% 48%),
      hsl(320 71% 48%), hsl(333 72% 48%), hsl(347 72% 48%), hsl(0 73% 47%)); */
  background-image: linear-gradient(75deg, #fff, #fff, #fff, #fff, #fff, #fff, #fff, #fff, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marquee--borders {
  border-block: 3px solid dodgerblue;
  padding-block: 0.75rem;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: calc(var(--duration) / -2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/*rotate-image */
@keyframes bgmove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.rotate-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  animation: spin 10s linear infinite;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.5); */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.text-justify {
  text-align: justify;
}

/*  */
.photo-gallery {
  display: flex;
  align-items: flex-end;
  /* place thumbnails along the bottom */
  gap: 6px;
  margin: 10px auto;
  max-width: 600px;
  /* $max-img-width */
  position: relative;
  padding-top: 66.6666667%;
  /* (400px / 600px) * 100% */
}

@media screen and (min-width: 600px) {
  .photo-gallery {
    padding-top: 0;
    height: 500px;
    /* $max-img-height */
  }
}

.photo-gallery img {
  max-width: 100%;
  vertical-align: top;
  display: block;
}

/* Each gallery item remains a flex child (contains hidden input + absolute image + label/thumb) */
.photo-gallery__item {
  flex: 0 0 auto;
}

/* big image that overlays the container */
.photo-gallery__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  object-fit: cover;
  /* preserve aspect, fill the box */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  /* clicks go to labels */
}

/* thumbnail label */
.photo-gallery__thumb {
  display: block;
  cursor: pointer;
}

.photo-gallery__thumb>img {
  display: block;
  width: 120px;
  height: 80px !important;
  margin: 6px;
  border-radius: 4px;
  transition: box-shadow 0.15s ease;
}

@media screen and (max-width:768px) {
  .photo-gallery__thumb>img {
    width: 70px;
    height: 40px !important;
    margin: 20px 6px 6px 6px;
  }
}

/* hide the radio inputs (but keep them available for label toggling) */
.photo-gallery__selector {
  position: absolute;
  left: -9999px;
}

/* When a radio is checked, show its image and highlight its thumb */
.photo-gallery__selector:checked+.photo-gallery__img {
  opacity: 1;
  z-index: 2;
}

.photo-gallery__selector:checked~.photo-gallery__thumb>img {
  box-shadow: 0 0 0 3px #0be2f6;
}

/*  */
/* Main Layout */
.handmade-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  place-items: center;
  min-height: 100vh;
}

/* Content */
.handmade-content {
  /* padding-left: 120px; */
  color: #000;
  user-select: none;
}

.handmade-content img {
  border: 2px solid #000 !important;
}

.handmade-content h1 {
  font-family: "Dancing Script", cursive;
  font-size: 40px;
  font-weight: 700;
  background: -webkit-linear-gradient(0deg, #0f48d1, #d40ce7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 36px;
  padding-left: 10px;
}

.handmade-content p {
  font-size: clamp(0.9rem, 4vw, 1.2rem);
  line-height: 1.6;
  /* padding-right: 100px; */
}

.handmade-btn {
  background-image: linear-gradient(-180deg, #000, #000000a1);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  width: max-content;
  outline: 0;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  margin-top: 26px;
  text-align: center;
  transform: scale(1);
  transition: all 0.2s ease-in;
  cursor: pointer;
  user-select: none;
}

.handmade-btn:hover {
  box-shadow: 0 4px 10px #747d88;
  transform: scale(0.98);
  color: #fff;
  font-size: 22px;
}

.read-more {

  color: #000;
  border-radius: 30px;
  border-color: #000;
  padding: 5px 15px 5px 15px;
}

.read-more:hover {
  background-image: linear-gradient(-180deg, #000, #000000a1);
  color: #fff;
}

/* Stacked Cards */
.handmade-stack {
  position: relative;
}

.handmade-card {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 350px;
  height: 500px;
  border-radius: 2rem;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25),
    0 15px 20px 0 rgba(0, 0, 0, 0.125);
  transition: transform 0.6s;
  user-select: none;
}

.handmade-card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  pointer-events: none;
}

/* Card stacking positions */
.handmade-card:nth-last-child(n + 5) {
  --x: calc(-50% + 90px);
  transform: translate(var(--x), -50%) scale(0.85);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.01);
}

.handmade-card:nth-last-child(4) {
  --x: calc(-50% + 60px);
  transform: translate(var(--x), -50%) scale(0.9);
}

.handmade-card:nth-last-child(3) {
  --x: calc(-50% + 30px);
  transform: translate(var(--x), -50%) scale(0.95);
}

.handmade-card:nth-last-child(2) {
  --x: calc(-50%);
  transform: translate(var(--x), -50%) scale(1);
}

.handmade-card:nth-last-child(1) {
  --x: calc(-50% - 30px);
  transform: translate(var(--x), -50%) scale(1.05);
}

.handmade-card:nth-last-child(1) img {
  box-shadow: 0 1px 5px 5px rgba(165, 32, 243, 0.5);
}

.handmade-swap {
  animation: handmade-swap 1.3s ease-out forwards;
}

@keyframes handmade-swap {
  30% {
    transform: translate(calc(var(--x) - 250px), -50%) scale(0.85) rotate(-5deg) rotateY(65deg);
  }

  100% {
    transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
    z-index: -1;
  }
}

/* Media queries */
@media (max-width: 1200px) {
  @keyframes handmade-swap {
    30% {
      transform: translate(calc(var(--x) - 200px), -50%) scale(0.85) rotate(-5deg) rotateY(65deg);
    }

    100% {
      transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
      z-index: -1;
    }
  }

  .handmade-content {
    padding-left: 80px;
  }

  .handmade-content p {
    padding-right: 40px;
  }

  .handmade-card {
    width: 250px;
    height: 380px;
  }
}

@media (max-width: 1050px) {
  @keyframes handmade-swap {
    30% {
      transform: translate(calc(var(--x) - 150px), -50%) scale(0.85) rotate(-5deg) rotateY(65deg);
    }

    100% {
      transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
      z-index: -1;
    }
  }

  .handmade-content {
    padding-left: 60px;
  }

  .handmade-content p {
    line-height: 1.5;
  }

  .handmade-card {
    width: 220px;
    height: 350px;
  }
}

@media (max-width: 990px) {
  .handmade-content p {
    padding-right: 0;
  }

  .handmade-card {
    width: 200px;
    height: 300px;
  }
}

@media (max-width: 950px) {
  .handmade-main {
    grid-template-columns: 1fr;
    grid-template-rows: 4fr 3fr;
    grid-template-areas:
      "stacked"
      "content";
  }

  .handmade-content {
    grid-area: content;
    text-align: center;
    padding: 0 90px;
  }

  .handmade-btn {
    margin-bottom: 30px;
  }

  .handmade-stack {
    grid-area: stacked;
  }
}

@media (max-width: 768px) {
  .handmade-main {
    /* grid-template-rows: 1fr 1fr; */
    grid-template-rows: 380px 1170px;
  }

  .handmade-content {
    padding: 0 15px;
  }

  .handmade-content h4 {
    font-size: 15px;
    padding-top: 10px;
  }

  .handmade-content h1 {
    padding-left: 0;
  }

  .handmade-btn {
    padding: 8px 16px;
  }

  .handmade-card {
    width: 180px;
    height: 260px;
  }
}

/*  */
.fig-border {
  border: 5px solid #fff;
}

.text-height {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div-shadow {
  box-shadow: 0 0 10px #000;
}

@media screen and (max-width:768px) {
  .text-height {
    height: 150px;
  }

  .navbar img {
    width: 50px;
  }

  .navbar-brand h1 {
    font-size: 22px;
  }

  .navbar-brand h6 {
    font-size: 10px;
  }

  .handmade-content h1 {
    font-size: 22px;
    margin-bottom: 0px;
  }

  .handmade-card {

    top: 0;
    left: 0;
    width: 200px;
    height: 350px;
    border-radius: 2rem;
  }
}

/* Sticky button position */
.whatsapp-btn {
  position: fixed;
  top: 85%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px;
  width: 60px;
  /* default circle */
  height: 60px;
  transition: width 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}

/* Only icon shakes */
.whatsapp-btn img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  animation: shake 0.8s ease-in-out infinite;
  animation-delay: 2s;
  transform-origin: center;
  /* make rotation smooth */
}

/* Text inside button */
.whatsapp-text {
  margin-left: 10px;
  opacity: 0;
  color: #fff;
  transition: opacity 0.3s ease;
}

/* On hover, expand button */
.whatsapp-btn:hover {
  width: 160px;
  padding: 12px 10px;
}

/* Show text on hover */
.whatsapp-btn:hover .whatsapp-text {
  opacity: 1;
}

/* Pause icon shake on hover */
.whatsapp-btn:hover img {
  animation-play-state: paused;
  transform: scale(1.1);
  /* optional zoom effect */
}

/* Shake animation */
@keyframes shake {

  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-15deg);
  }

  40% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

@media screen and (max-width:768px) {
  .whatsapp-btn {
    position: fixed;
    top: 93%;
  }
}

.order-now-btn {
  display: inline-block;
  background-color: #055160;
  /* WhatsApp green */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.order-now-btn:hover {
  background-color: #005d6f;
  transform: scale(1.05);
  color: #fff;
}

.where-we-do-mandala strong {
  font-size: 19px;
}

.text-indent {
  text-indent: 70px;
}

.resin-hero {
  background: linear-gradient(to right, #4b6cb7, #182848);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.resin-hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.resin-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 20px;
  text-align: center;
}

.resin-card:hover {
  transform: translateY(-8px);
}

.resin-card h5 {
  color: #182848;
  font-weight: 600;
  margin-top: 15px;
}

.resin-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.resin-btn {
  background: #4b6cb7;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.resin-btn:hover {
  background: #182848;
  color: #fff;
}

.home-decor img {
  height: 400px;
}

.home-decor1 img {
  height: 300px;
}

.animate-on-scroll {
  opacity: 0;
}
@media screen and (max-width:768x) {
  .animate-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
}
body {
  overflow-x: hidden; /* prevents horizontal scroll during fadeInRight */
}
}
.resin-bg{
  background-color: #000;
}
.resin-bg1 img{
   border: 4px solid #000;
}
.resin-bg h1{
  color: #fff;
}
.coustomize {
    color: #fff;
    border-radius: 30px;
    border-color: #fff;
    padding: 5px 15px 5px 15px;
}
.coustomize:hover {
    /* background-image: linear-gradient(-180deg, #fff, #fff); */
    color: #807e7e;
    box-shadow: 0 0 10px #fff;
}
.resin-bg img{
  border: 5px solid#fff;
}
.resin-bg strong{
  color: #fff;
  font-size: 18px;
} 
.resin-bg li{
  color: #c7c5c5;
}
.mandala-course {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.mandala-course h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #b22222; /* deep red */
  margin-bottom: 10px;
}

.mandala-course p {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
}

.course-section {
  margin-top: 30px;
}

.course-section h2 {
  font-size: 1.8rem;
  color: #001f3f; /* dark blue */
  margin-bottom: 10px;
  border-left: 6px solid #000;
  padding-left: 10px;
}

.course-section h3 {
  margin-top: 15px;
  color: #000;
}

.course-section ul {
  margin: 10px 0 20px 20px;
}

.course-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.modes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mode-card {
  flex: 1;
  min-width: 250px;
  background: #f0f6ff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.mode-card:hover {
  transform: translateY(-5px);
}

.cta {
  text-align: center;
  margin-top: 30px;
}

.btn-enroll {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-enroll:hover {
  color: #fff;
  background: #001f3f;
  transform: scale(1.1);
}
.enroll {
  background: #fff;
  padding: 20px;
  
  
}

.enroll h2 {
  color: #001f3f;
}

.enroll-steps {
  margin: 15px 0;
  padding-left: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.enroll-steps li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 8px;
}

.enroll-steps li::marker {
  color: #000; /* deep red numbers */
  font-weight: bold;
}

.enroll-steps a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.enroll-steps a:hover {

  color: #001f3f;
  text-decoration: underline;
}
/* ===== Modal Styles ===== */
.modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 2% auto;
  padding: 25px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  color: #ff0000;
  cursor: pointer;
}

.close:hover {
  color: #001f3f;
}

/* ===== Form Styles ===== */
.enroll-form {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.enroll-form label {
  margin: 8px 0 4px;
  font-weight: 600;
  color: #001f3f;
}

.enroll-form input,
.enroll-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.enroll-form input:focus,
.enroll-form select:focus {
  border-color: #000;
  outline: none;
}

.btn-submit {
  margin-top: 15px;
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  color: #fff;
  background: #001f3f;
  transform: scale(1.05);
}
