/* styles.css - full responsive styles (pure CSS) */



*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font-main);
  background:var(--sof-bg);
  color:var(--dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x: hidden;
}


/* COLOR THEME */
:root{
  --theme-lightblue:#4fadca;
  --theme-darkgreen:#5ba142;
  --theme-green:#c8e9bc;
  --theme-purple:#decce9;
  --theme-darkpurple:#7e4c9e;
  --theme-orange:#f3dcc9;
  --theme-darkorange:#e87516;
  --accent:#faedaa;
  --accentdark:#dcb808;
  --parallaxcolor:#505050;
  --dark:#332e2e;
  --light:#fff;
  --soft-bg:#f7f7f7;
  --font-main:'Poppins',sans-serif;
  --font-heading:'Kalam',cursive;
  --font-subheading:'poppins',sans-serif;
  --font-accent:'Cormorant Garamond',serif;
 }
 
.maincolorlightbg{background:var(--theme-lightblue);}
.naturelightbg{background: var(--theme-green);}
.naturedarkbg{background: var(--theme-darkgreen);}
.creativelightbg{background: var(--theme-purple);}
.creativedarkbg{background: var(--theme-darkpurple);}
.playlightbg{background: var(--accent);}
.playdarkbg{background: var(--accentdark);}
.shoplightbg{background-color:var(--light);}
.shopdarkbg{background-color:var(--theme-lightblue);}

.nature-border-font-color{color:var(--theme-darkgreen);border-color: var(--theme-darkgreen);}
.creative-border-font-color{color:var(--theme-darkpurple);border-color: var(--theme-darkpurple);}
.play-border-font-color{color:var(--accentdark);border-color: var(--accentdark);}
.shop-border-font-color{color:var(--theme-lightblue);border-color: var(--theme-lightblue);}


/* font-family & font-Size */

h1,h2{font-family: var(--font-heading);}
p{font-family: var(--font-main);}

h1{font-size: clamp(3rem, 3vw, 4.5rem);}
h2{font-size: clamp(2rem, 2.5vw, 3.5rem);}
h3{font-size: clamp(1.5rem, 2.5vw, 2rem);font-family: var(--font-subheading);}
h4{font-size: clamp(1rem, 6vw, 1.3rem);font-family: var(--font-subheading);}
p{font-size: clamp(0.9rem, 1.5vw, 1rem);line-height: 1.3;text-align: left;}
h4 a{text-decoration:none;color:var(----dark);}
.card span a{text-decoration:none;color:var(----dark);}
/* Modal Pop Start */

.form-row {
  display: flex;
  gap: 15px;
  
}
.full-width {
  width: 100%;
}

.modal-pop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0b2140;
  z-index: -99;
  opacity: 0;
  overflow: auto;
  
}


.modal-pop-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.1);
  padding: 4rem;
  width: 65rem;
  margin: auto;
  overflow: auto;
}

.modal-pop-box h2 {
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.07rem;
}

.modal-pop-box h2:after {
  content: '';
  background-color: #000;
  display: block;
  width: 8rem;
  height: 2px;
  margin: 1.5rem auto 4rem;
}

.modal-pop-box .modal-pop-input {
  flex: 1;
}

.modal-pop-box .modal-pop-input input[type="text"] {
  margin-bottom:1rem;
  border-radius:10px;
  width: 100%;
  height: 3rem;
  border: 1px solid #ddd;
  padding: 1.5rem;
  font-family: inherit;
  flex: auto;
  border-radius: 5px;
}
.modal-pop-box .modal-pop-input textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 1.5rem;
  font-family: inherit;
  border-radius: 5px;
  box-sizing: border-box;
}

.modal-pop-box .modal-pop-input i {
  position: absolute;
  left: 1.5rem;
  font-size: 2rem;
  color: #7a7a7a;
  margin-top: 0.5rem;
}

.modal-pop-box .modal-pop-input input[type="submit"] {
  border: 1px solid var(--theme-darkgreen);
  text-transform: uppercase;
  background-color: var(--theme-darkgreen);
  width: 100%;
  color: #000;
  height: 4rem;
  padding: 0 2.5rem;
  color: #ffffff;
  cursor: pointer;
  font-family: 'GlacialIndifference-Regular', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1 0.5rem;
  margin-bottom: -2.5rem;
}

.modal-pop button {width: 0;height: 0;}
 .close-popup {
  position: absolute;
  top: 1rem;
  right: 4rem;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

 .close-popup span {
  margin-right: 0.3rem;
  font-size: 1.6rem;
}

.modal-pop.open {
  z-index: 999999;
  opacity: 1;
}

/* Modal Pop Finish */


/* simple utility */
.container{height:auto;margin:auto; text-align: center;padding:3rem;width:100%;}
.section{padding:3rem; height:auto;text-align:center;width:100%;}

ul{text-decoration: none;font-size:clamp(0.9rem, 2vw, 1rem);text-align:left;padding:0px 5px;}
li{list-style:none;padding:0px 5px;}



/* ANIMATIONS */
.fade-up, .fade-up-delayed{opacity:0;transform:translateY(40px);transition:all 0.8s cubic-bezier(.16,.84,.46,1);}
.fade-up-delayed{transition-delay:0.2s;}
.fade-up.visible, .fade-up-delayed.visible{opacity:1;transform:translateY(0);}


/* BUTTON AND LABEL */
button{background:var(--theme-lightgreen);color:#fff;border:none;margin-top:10px;padding:10px 0px;border-radius:5px;cursor:pointer;font-size:clamp(0.9rem,1.8vw,1.3rem);font-weight:600; width:100%; height:auto;}
button:hover{ transform:scale(1.03); transition:transform .15s; -webkit-transform:scale(1.03); -moz-transform:scale(1.03); -ms-transform:scale(1.03); -o-transform:scale(1.03); }


.outlinebutton{ background:var(--light); border: 2px solid; padding:15px 25px; border-radius:30px; cursor:pointer; font-size:clamp(0.9rem,1.8vw,1rem); font-weight:600; width:auto; height:auto; -webkit-border-radius:30px; -moz-border-radius:30px; -ms-border-radius:30px; -o-border-radius:30px; }
.outlinebutton:hover{ transform:scale(1.03); transition:transform .15s; -webkit-transition:transform .15s; -moz-transition:transform .15s; -ms-transition:transform .15s; -o-transition:transform .15s; }


.comingsoonlabel{width: 45%;
  height: auto;
  padding: 0.2rem;
  position: absolute;
  top: 5%;
  right: 8%;
  color: var(--light);}

.category-tabs button{font-size: 1rem;}




/* FADE UP (animation triggered by JS) */
.fade-up{opacity:0;transform:translateY(30px);transition:all .9s cubic-bezier(.16,.84,.46,1)}
.fade-up.visible{opacity:1;transform:none}
.fade-up-delayed{opacity:0;transform:translateY(30px);transition:all 1.2s cubic-bezier(.16,.84,.46,1)}
.fade-up-delayed.visible{ opacity:1; transform:none; }


/* FLOATING LEAVES */
.leaf-container{position:fixed;top:0;left:0;width:100vw;height:100%;pointer-events:none;overflow:hidden;z-index:2;}
.leaf{position:absolute;width:32px;opacity:.9;animation:leafFloat linear infinite;will-change:transform,opacity;}
@keyframes leafFloat{0%{transform:translateY(-8vh) rotate(0deg);opacity:0}15%{opacity:1}100%{transform:translateY(120vh) rotate(420deg);opacity:0}}


/* TOP BAR */
.top-bar{color:var(--light);text-align:center;padding:8px 0;font-size:14px;z-index:100000;position:relative;}


/* HEADER */
.header{display:flex;align-items:center;justify-content:space-between;padding:14px 5%;background:#fff;position:sticky;top:0;;z-index:10000;height:16vh;}

.logo{ width:7vw; display:block;margin:auto; animation: zoom-in-zoom-out-logo 1s ease infinite; -webkit-animation: zoom-in-zoom-out-logo 1s ease infinite; }

/* Search */

.search-container input{padding:10px 14px;width:22vw;border-radius:999px;border:1px solid var(--dark); margin-left:0px; position: relative; }


.autocomplete-list {
  position: absolute;
  border: 1px solid #ccc;
  max-height: 250px;
  overflow-y: auto;
  width: auto;
  background: white;
  z-index: 99;
  margin-top: 0.5rem;
  border-radius: 10px;
  
}

 .autocomplete-item {
  padding: 8px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: black;
}


.autocomplete-list li {
  list-style: none;
  padding: 5px 5px;
  border-bottom: 1px #000 dotted;
}

.autocomplete-list a {
  text-decoration: none;
  color:#000;
}
.autocomplete-item a :hover,
.autocomplete-item a.active {
  background-color: #f4f4f4;
}

.header-icons img{width:2vw;margin-left:12px;display:inline-block}


/* NAV */
.nav{display:flex;justify-content:space-between;padding:0.2vw;z-index:3;position:relative;width:45vw;}

.nav ul {list-style: none;padding: 0;margin: 0;display: flex; gap: 25px; align-items: center;}
.nav ul li {position: relative;}
.nav a {text-decoration: none;color: var(--dark); padding: 10px 12px; display: block;font-weight: 600;}


/* SUBMENU (HIDDEN BY DEFAULT) */
.dropdown{display:flex;align-items: center;justify-content: center;}
.dropdown .dropdown-menu {display: none; position: absolute; top: 52px; left: 0; background: #fff; min-width: 250px; padding: 8px 0;
  border-radius: 8px; box-shadow: 0 6px 16px rgba(0,0,0,0.15); z-index: 3;}

  .down-arrow {height: 1.5rem;float:right;margin-left:1rem;}

.dropdown-menu li {width: 100%;}
.dropdown-menu a { padding: 10px 18px;  color: var(--dark);}

/* SHOW SUBMENU ON HOVER */
.dropdown:hover .dropdown-menu {display: block;line-height:1rem;}

/* SUBMENU HOVER EFFECT */
.dropdown-menu a:hover { background: #f4f4f4;}


.nav-item {position: relative;padding: 10px 15px;border-radius: 6px;transition: background 0.3s ease; background-size: cover;background-position: center;}


/* Background image on hover */
.nav-item:hover {background-image: url('../images/nav-bg.svg');}

/* Background image for active nav item */
.nav-item.active {background-image: url('../images/nav-bg.svg');}


/* HERO */
.hero{position:relative;height:70vh;overflow:hidden;display:flex;align-items:center;justify-content:center}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,-0.65);z-index:2}
.hero-content{position:relative;z-index:3;color:var(--light);text-align:center;padding:0 20px;max-width:100vw;}



/* Parallax */
.parallax{align-items:center;position:relative;height:auto;background-size:cover;background-attachment: fixed;background-position:center;background-repeat: no-repeat;z-index:999;}
.parallax .section-title, .parallax .section-sub{color:var(--light);}

/* Dark/light overlay for opacity effect */
.parallax::before{content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background:var(--parallaxcolor);opacity:0.8;z-index: -2;}



/* TITLES */
.section-title{font-size:clamp(1.2rem, 6vw, 2.5rem);margin-bottom:8px;font-weight:700;}
.section-sub{color:#666;margin-bottom:36px;text-align: center;}
.parallax .section-title, .parallax .section-sub{color:#fff;}


/* GRID */
.grid-3{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:2.5rem;width:auto;margin: 0 2rem 2rem 2rem;}
.grid-3-workshop{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:2rem;width:90%;margin:auto;}
.grid-4{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:1rem;}
.summary{display:grid;grid-template-rows: 1fr 1fr;gap:15px;z-index: 10;}


/* CARD BASE */
.card{padding:10px 40px 40px 40px;border-radius:12px;box-shadow:0 6px 18px rgba(0,0,0,0.08);transition:transform .35s,box-shadow .35s;width:100%;}

.workshop-card{height:75vh;}

.workshop-card p{height:10vh;}

.slider .workshop-card{margin:0 1rem;}
.slider .product-card{margin:0 1rem;}
.slide{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1.5rem;
  width: auto;
  margin: 1rem 1.5rem 1rem 0rem;
  
}


/* Recommended icon sizes */
span.size-20 {
font-size: 20px;
font-variation-settings: 'OPSZ' 20;
}
span.size-24 {
font-size: 24px;
font-variation-settings: 'OPSZ' 24;
}
span.size-40 {
font-size: 40px;
font-variation-settings: 'OPSZ' 40;
}
span.large {
font-size: 100px !important;
color: #ddd;
font-variation-settings: 'OPSZ' 100;
}


/* Rules for using icons as black on a light background. */
.dark {
background: black;
color: rgba(255, 255, 255, 1);
font-variation-settings: 'GRAD' -25;
}
.dark-inactive {
background: black;
color: rgba(255, 255, 255, 0.3);
font-variation-settings: 'GRAD' -25;
}

/* Privacy Policy Section Start */
.policy-row {
  padding: 1rem;
}

.policy-row p {
  font-size: 1.0rem;
  color: #7a7a7a;
  margin-bottom: 1.5rem;
  
}

.policy-row p a {
  text-decoration: none;
  color: #ef6537;
}

.policy-row h2 {
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  
}

.policy-row ul {
  margin: 0 0 0 1.5rem;
  padding: 0;
}

.policy-row li {
  font-size: 1.0rem;
  color: #7a7a7a;
  margin-bottom: 1rem;
  line-height: 1.4rem;
  list-style: disc;
}

.policy-row ul ul {
  padding-top: 1rem;
}

.policy-row h3 {
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  font-family: var(--font-heading);
  text-align:left;
}

.policy-row h4 {
  font-size: 2.2rem;
  font-weight: normal;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}

/* Privacy Policy Section Finish */


.testimonial-card{height: 24rem;background-color: var(--light);border:1px dashed var(--theme-darkgreen);margin:1rem 0.5rem 0.5rem 0.5rem; overflow-y:scroll}
.testimonial-card .testimonial-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  display:inline-block;
}
.product-card {border: 1px solid #ddd;padding: 10px;text-align: left;background: var(--light);margin:0px 1rem;}

.detailcontent-card {border-radius: 8px;height:auto;}

.grid-3-workshop .workshop-card{padding:15px;position:relative;}

/* .product-page .product-card{width:27vw;}
.product-page .workshop-card{width:22vw;} */
.product-page .grid-3-workshop{width: 100%;}

.card:hover,.product-card:hover,.testimonial-card:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(0,0,0,0.12)}

/* CARD IMAGE */
.card img{width:100%;height:55dvh;object-fit:cover;border-radius:8px;border:var(--light) 4px solid;}
.product-card img {width: 100%;height: 40vh;object-fit: cover;margin:auto; border-radius:20}
.grid-3-workshop .workshop-card img{height:37dvh;cursor:pointer;}


/* CARD FONT */
.card h3,.product-card h3{margin:5px 0 8px}
.testimonial-card h4{text-align: center;font-size: clamp(0.9rem, 2vw, 1rem)}
.testimonial-card p{overflow-y: auto;line-height:1.6rem;}

.detailcontent-card h2{line-height: 0.5;padding:0px 5px 10px 5px;font-size:clamp(2rem, 3vw, 1.3rem);}
.grid-3-workshop .workshop-card h4{margin: 0.1rem 0rem; height:8vh;}
.detailcontent-card span{text-decoration: underline;font-weight: 600;margin-right:10px;}
.card span{font-size: clamp(0.6rem, 1.0vw, 1.0rem);}


/* CARD BUTTON */
/* .grid-3-workshop .workshop-card button{bottom:0px;} */
.grid-3-workshop .outlinebutton{margin:5rem;}
.home-workshop-card-btn{position:relative;bottom:7%; width:60%}
.detailcontent-card button{margin:0rem 0px;width:100%;}




.stars {color: gold;font-size: 18px;}
.price .new {color: #c0392b;font-size: 28px;font-weight: bold;}
.price .old {text-decoration: line-through;margin: 0 8px;color: gray; font-size:16px;}


.pricecircle{border-radius:100%;position:relative;top:10%;left:20%;text-align: center;
    padding: 20px 20px;height:15vh; width:15vh;cursor: pointer;border-radius: 100%;font-size: 30px;opacity:0.8;color: #c0392b}


@keyframes zoom-in-zoom-out {
  0% {
    scale: 60%;
  }
  50% {
    scale: 80%;
  }
  100% {
    scale: 100%;
  }
}

@keyframes zoom-in-zoom-out-logo {
  0% {
    scale: 100%;
  }
  50% {
    scale: 70%;
  }
  100% {
    scale: 80%;
  }
}


/* WHY GRID */
.why-grid{display:grid;grid-template-columns:1fr 1fr;align-items:center;padding:2% 10%;}
.why-image{display:grid; grid-template-columns: 1fr 1fr;margin:auto;}
.why-image img{border:4px solid var(--theme-darkgreen);border-radius: 100%;display: inline-block;}
.why-image .leftimage{width:400px; height:400px; position:relative; left:20%;}
.why-image .rightimage{width:250px; height:250px; position:relative; right:15%; top:50%;}
.why-grid p{text-align: left;}


/* SLIDER */

 /* Slider */
 .slide{
  display: flex;
  flex-direction: column; /* or row */
  gap: 1.5rem; /* space between cards */
 }
.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 10;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


.slider-wrapper {display:flex;align-items: center;justify-content: center;overflow: hidden;width: 100%;}
.slider { justify-content: center;
  overflow: hidden;
  width: 100%;
  margin-bottom: 3rem;
  margin-top: 2rem;}
.slide {justify-content: center;width:100%;}
/* .slide {width: clamp(220px, 25%, 300px);} */
.slider .comingsoonlabel{top:-250px;}

.slider-btn { text-align: center; height:48px; width:54px; cursor: pointer; border-radius: 100%; font-size: 20px; transition: 0.2s; z-index: 20; margin:20px; -webkit-transition: 0.2s; -moz-transition: 0.2s; -ms-transition: 0.2s; -o-transition: 0.2s; }
.slider-btn:hover {background: #eee;}


/* ABOUT US AND DETAIL PAGE */
.about-section{padding:5% 5%;}

.about-container {display: grid;grid-template-columns: 1fr 1fr;align-items: center;padding: 50px;}

.detailabout-container{display:grid;grid-template-columns:4fr 2fr;padding:3%;}

.detailabout-text{height: auto; border-radius:5px;background-color: var(--light);padding:5px 25px;}

.about-text{background-color: var(--light);padding:10px;}

.about-text h2{font-size:2.2rem;margin-bottom:20px;color:#1d1d1d;}

.about-image {
  display: block;
  width: 350px;
  height: 350px;
  margin: 50px auto;
}

/* .about-image img{width:100%;border-radius:10px;box-shadow:0 10px 35px rgba(0,0,0,0.1);} */

.about-colorbox {position: absolute;width: 280px;height: 280px;background: #dcdcdc;z-index: 2;opacity: 1;border-radius:5px;}

.about-colorbox4 {  border: 5px solid #C1FF72;  background-image: url('../images/Kathy Kai.jpg');width: 350px;height: 350px;z-index: 2;
  border-radius: 50px; background-size: contain; background-repeat: no-repeat;background-position: center;}

/* CONTACT PAGE */

.contact-section{display:flex;justify-content:center;align-items:center;}
.contact-container{width:90vw;padding:5rem 0rem;display:grid;grid-template-columns:1fr 1fr;gap:40px;backdrop-filter: blur(12px);margin:auto;}
.contact-info{padding:1rem;}


/* LEFT INFO */
.contact-info h1{ font-size:1.5rem 3rem 4rem;margin-bottom:10px;font-weight:700;}
.contact-info p{margin-bottom:20px;color:#555;line-height:160%;}
.info-box{margin-bottom:20px;}
.info-box h3{font-size:0.8rem 1rem 1.2rem;font-weight:600;color:#333;line-height:10%;margin-top:10%;}
.info-box p{color:#666;margin-top:4px;}
.info-box a{text-decoration: none;color: #555;}


/* FORM */
.contact-form{background:#ffffff;padding:0rem 5rem;border-radius:10px;box-shadow:0 8px 25px rgba(0,0,0,0.08);animation:fadeUp .8s ease-out;height:100%;margin:auto;width:90%;}
.contact-form button{width:100%;margin:1rem 0rem 3rem 0rem;}
input[type="submit"] {
width:100%;margin:1rem 0rem 3rem 0rem;padding:1rem;color:#fff;
}
input[type="submit"]{color:#fff;border:none;margin-top:10px;padding:10px 0px;border-radius:5px;cursor:pointer;font-size:clamp(0.9rem,1.8vw,1.3rem);font-weight:600; width:100%; height:auto;}
input[type="submit"]:hover{ transform:scale(1.03); transition:transform .15s; -webkit-transform:scale(1.03); -moz-transform:scale(1.03); -ms-transform:scale(1.03); -o-transform:scale(1.03); }


.contact-get-touch-box {position: relative;margin-bottom: 2rem;}
.contact-get-touch-box input {width:100%;height: 3rem;border: 1px solid #ddd;padding: 1.5rem;font-family: inherit;flex: auto;border-radius: 5px;}
.contact-get-touch-box textarea {width: 100%;border: 1px solid #ddd;padding: 1.5rem;font-family: inherit;flex: auto;border-radius: 5px;}



/* PROMO */
.promo{padding:2%;color:#fff;text-align:center;}
.promo h2{font-size: clamp(3rem, 3.5vw, 4.5rem);}
.promo .section-title h2{font-size: clamp(1rem, 1.5vw, 1.5rem);}


/* FOOTER */
.footer{background:#e6e6e6;padding:15px;}
.footer-grid{display: grid;grid-template-columns:1.5fr 1fr 1fr 1fr;}
.footer .Links a{color:var(--dark);text-decoration:none;display:block;margin:auto;font-size: small;}
.footer-copy{text-align:center;margin-top:0px;color:var(--light);padding:5px;}
.footerlogo{text-align: center;}
.social-icons {display: flex; text-align: left;gap:10px;}
.footerlogo .social-icons{justify-content: center;}

.icon {width:35px;height: 35px;display: flex;align-items: center;justify-content: center;border-radius: 20%;text-decoration: none;color: white;
  font-size: 20px;transition: 0.3s ease;}

/* Individual Colors */
.instagram {
  background: #E1306C;
}

.facebook {
  background: #1877F2;
}

.linkedin {
  background: #0A66C2;
}

/* Hover Effect */
.icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}


/* RESPONSIVE BREAKPOINTS */ 




@media (max-width: 1024px) {

  /* HEADER */
  .logo { width: 120px; }
  .search-container input { width: 160px; }
  .header-icons img { width: 28px; }

  /* GRIDS */
  .grid-3,
  .grid-4,
  .grid-3-workshop {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .why-grid {
    grid-template-columns: 1fr;
    
  }



  /* WHY SECTION */
  .why-image .leftimage {
    width: 280px;
    height: 280px;
    left: 10%;
  }

  .why-image .rightimage {
    width: 180px;
    height: 180px;
    right: 5%;
  }
}


@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 2rem;
  }

.contact-get-touch-box {display:block;}
.contact-info p{display:grid; }

.about-container{grid-template-columns: none !important;}

}


@media only screen and (min-width: 768px) and (max-width: 1024px) {

  /* HEADER */

  .nav {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    width: 65vw;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
  }

  .nav a {
    padding: 14px;
    border-bottom: 1px solid #eee;
  }
  
  .hamburger { display: block; }

  .search-container input { width: 16vw; }
  .header-icons img { width: 24px; }

  /* HERO */
  .hero { height: 55vh; }

  /* GRIDS */
  .grid-3,
  .grid-4,
  .grid-3-workshop {
    grid-template-columns: 1fr;
  }

  /* WHY SECTION */
  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .why-grid p { text-align: center; }

  .why-image {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .why-image .leftimage,
  .why-image .rightimage {
    position: static;
    width: 220px;
    height: 220px;
    margin: 10px auto;
  }


  
  /* SLIDER */
  
 

 
  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 20px;
  }
}



@media (max-width: 600px) {
  h1, h2 { line-height: 1.4; }

  /* HEADER */
  .logo { width: 90px; }

  .header-icons img {
    width: 22px;
    margin-left: 6px;
  }

  /* CARDS */
  .card,
  .product-card,
  .workshop-card {
    height: auto;
    width:auto;
    margin: 20px 0 0 0;
    background-color:none;
    }

  
  .testimonial-card {
    height: 24rem;
    width:auto;
    margin: 20px 0 0 20px;
    background-color:none;
    }
    
 .container {padding:8vh 0}

 .product-card img { height: 240px; }

 
.about-section{padding:5% 5%;}

.about-container {grid-template-columns: 1fr;padding:0px;height:auto;}

.detailabout-container{display:block;align-items: center;height:auto;padding:10px;}

.detailabout-text{height: auto;}

/*.about-image {width: 30vh;height: 30vh;margin:auto;}*/

.about-colorbox {width: 20vh;height: 20vh;}


.home-workshop-card-btn {bottom:-12px;}


  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; }
  .footer { text-align: center; }
}



@media (max-width: 480px) {
  .close-popup span{color:#000;}
  /* HEADER */
  .header { padding: 10px; }
  .logo { width: 70px; }

  /* HERO */
  .hero { height: 65vh;}

  /* WHY */
  .why-image .rightimage { display: none; }

  /* BUTTONS */
  button {
    font-size: 1rem;
    padding: 12px;
    width:auto;
  }

  /* .comingsoonlabel{top:-320px;} */
}


@media (max-width: 390px) {

  /* .comingsoonlabel{top:-240px;} */
}


@media (max-width: 600px) {
  .form-row {
      flex-direction: column;
  }
}

#contact_us_success_message .contact-enquire-sucess, #enquiry_success .contact-enquire-sucess{text-align: center; font-size: 3rem; font-weight: 400; color: #f84324 !important;}
#contact_us_success_message .contact-enquire-sucess img, #enquiry_success .contact-enquire-sucess img{display: block; margin: auto; margin-bottom: 1.5rem; width: 10rem;}
#contact_us_success_message .contact-enquire-sucess p, #enquiry_success .contact-enquire-sucess p{margin-bottom: 0 !important; margin-top: 1rem !important; font-size: 1.5rem; color: #000 !important;}

.loading {position: fixed; z-index: 999999; height: 2em; width: 2em; overflow: show; margin: auto; top: 0; left: 0; bottom: 0; right: 0; display: none;}
.loading:before {content: ''; display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.3);}
.loading:not(:required) {font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0;}
.loading:not(:required):after {content: ''; display: block; font-size: 10px; width: 1em; height: 1em; margin-top: -0.5em; -webkit-animation: spinner 1500ms infinite linear; -moz-animation: spinner 1500ms infinite linear; -ms-animation: spinner 1500ms infinite linear; -o-animation: spinner 1500ms infinite linear; animation: spinner 1500ms infinite linear; border-radius: 0.5em; -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0; box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}




@media (max-width: 991px) {

  .dropdown-menu {
    display: none;
  }

  .nav-item.open > .dropdown-menu {
    display: block;
  }
}
.contact-bullets-button{ text-align:center;background:green; margin:1px 0px 0px 8px; padding:7px; border:1px solid green; color:#fff; font-weight:bold; font-size:1rem; border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px; -ms-border-radius:10px; -o-border-radius:10px; };
.contact-bullets-button:hover{ transform:scale(1.03); transition:transform .15s; -webkit-transform:scale(1.03); -moz-transform:scale(1.03); -ms-transform:scale(1.03); -o-transform:scale(1.03); }


.category-btn.active {
  color: #fff !important;
  border: 1px solid;
}