@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b1315;
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  
}

:root{
    --primary-color: #C9AB81;
    --secondary-color: #0b1315
}
.playfair {
  font-family: "Playfair", serif;
}

a {
  text-decoration: none;
}
ul{
  list-style: none;
}
.row {
  display: flex;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

.text-end {
  text-align: right;
}

/* Container */

.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.overflow-hidden {
  overflow: hidden;
}

/* ===== header START ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.header .header-main .btn_wrapper{
  display: none;
}
.header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(0);
  width: 100%;
  padding: 10px 40px ;
  transition: all 0.3s ease-in-out;
  background: var(--secondary-color) ;
}

.header.header-fixed .header-main {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.header.header-fixed .logo {
  max-width: 120px;
}

.header.header-fixed.hidden .header-main {
  transform: translateY(-105px);
}

.burger-btn,
.header-menu-drawer {
  display: none;
}

.header .navbar {
  max-width: 40%;
  width: 100%;
}

.header .navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.header .navbar.nav-left ul {
  justify-content: end;
}

.header .navbar.nav-right ul {
  justify-content: start;
}

.header .logo {
  max-width: 120px;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
}

.header .logo a img,
.header .logo img {
  width: 100%;
  display: inline-block;
}

.header .navbar a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
  color: var(--primary-color);
}

@media (max-width:1023px) {
  .header .logo {
    max-width: 100px;
  }

  .header .navbar ul {
    gap: 20px;
  }

  .header .navbar a {
    font-size: 16px;
  }
}

@media (max-width:767px) {
  .header .navbar {
    display: none;
  }

  .header .header-main {
    padding: 10px 20px ;
    justify-content: flex-start;
  }
  .header .header-main .btn_wrapper{
    width: 33.33%;
    display: block;
  }
  .burger-btn {
    display: flex;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    max-width: 80px;
    width: 100%;
  }

  .menu-close {
    background: none;
    border: none;
    width: 15px;
    display: flex;
    margin-bottom: 40px;
  }

  .burger-btn img,
  .menu-close img {
    width: 100%;
    max-width: 30px;
  }

  .header-menu-drawer {
    display: block;
  }

 .header .logo {
    max-width: 100%;
    width: 33.33%;
    justify-content: center;
}

 .header .logo img{
  max-width: 80px;
 }
  .header-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 30px 20px 20px;
    transform: translateX(250px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
  }

  .header-menu-drawer.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    background: #0b1315 ;
  }

  .res-navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .res-navbar ul li {
    margin: 15px 0;
  }

  .res-navbar ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s ease;
    color: var(--primary-color);
  }
}

/* ===== header END ===== */

/* ==== hero section css start ==== */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-section .splide__slide {
    position: relative;
    height: 100vh;
}

.hero-section .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-section .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Content */
.hero-section .slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0, -50%);
    color: #fff;
    text-align: left;
    z-index: 2;
}

.hero-section .slide-content h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 70px;
    max-width: 650px;
    width: 100%;
}
.main-btn{
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-btn:hover {
    background: #fff;
    color: #000;
}

/* Custom Arrows */
.hero-section .splide__arrows {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.hero-section .splide__arrows .splide__arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    position: initial;
    transform: unset;
}

.hero-section .splide__arrows .splide__arrow svg {
    fill: #fff;
    width: 16px;
    height: 16px;
}

@media(max-width:1440px){
    .hero-section .slide-content {
        left: 20px;
    }
}
@media(max-width:1023px){
    .hero-section .slide-content h2 {
        font-size: 50px;
		line-height: 55px;
    }
}
@media(max-width:767px){
    .hero-section .slide-content h2 {
        font-size: 30px;
		line-height: 35px
    }
    .hero-section .splide__arrows {
        top: unset;
        right: unset;
        left: 50%;
        bottom: 10%;
        transform: translate(-50%, 0);
        flex-direction: row;
    }
}
/* ==== hero section css end ==== */

/* ==== grinding-section start ==== */

.grinding-section {
    background: url('images/first3.png');
    background-size: cover;
    height: 100%;	
    width: 100%;
    background-repeat: no-repeat;
    padding-bottom: 10px;
    margin-top: -50px;
    position: relative;
}
.grinding-section .section-img_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}
.grinding-section .grinding_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    text-align: center;
}
.grinding-section h2 {
    font-size: 36px;
    line-height: 46px;
    color: #fff;
    padding-bottom: 20px;
    text-align: center;
}
.grinding-section .grinding_wrapper p{
    font-size: 20px;
    line-height: 25px;
    padding-bottom: 10px;
    color: #fff;
}
.grinding-section .img_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-width: 400px;
    margin: 0 0 50px;
}
.grinding-section a.main-btn {
    margin: 30px 0 50px;
}

/* intro */
.intro_wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
	margin: 50px 0 100px
}
.intro_wrapper h1 {
    font-size: 96px;
    line-height: 96px;
    text-align: center;
    color: var(--primary-color);
}
.intro_wrapper h3 {
    font-size: 40px;
    line-height: 45px;
    padding: 30px 0;
    color: var(--primary-color);
    font-weight: 400;
    text-align: center;
}
.intro_wrapper p {
    max-width: 500px;
    margin: auto;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    color: var(--primary-color);
}
.intro_wrapper a{
    text-align: center;
	margin: 30px auto 0;
	border: 2px solid var(--primary-color) !important;
	color: var(--primary-color) !important;
}
.intro_wrapper a:hover{
	background: var(--primary-color) !important;
	color: #000 !important;
}
@media(max-width:1023px){
	.intro_wrapper h1 {
		font-size: 72px;
		line-height: 72px;
	}
	.intro_wrapper h3 {
		font-size: 30px;
		line-height: 35px;
	}
	.intro_wrapper {
		margin: 50px 0 80px
	}
}
@media(max-width:767px){
    .grinding-section h2 {
        font-size: 26px;
        line-height: 30px;
    }
    .grinding-section .grinding_wrapper p {
        font-size: 16px;
        line-height: 20px;
    }
    .grinding-section a.main-btn {
        margin: 20px 0 40px;
    }
    .grinding-section .img_wrapper img {
        max-width: 300px;
    }
    .grinding-section {
        margin-top: -30px;
    }
	.intro_wrapper h1 {
		font-size: 40px;
		line-height: 40px;
	}
	.intro_wrapper h3 {
		font-size: 20px;
		line-height: 25px;
	}
	.intro_wrapper {
		margin: 50px 0 60px
	}
}
/* ==== grinding-section end ==== */

/* why choose us start */

.why-choose-section {
  margin: 0 0 100px;
}

.why-choose-section .features .splide__track {
  padding: 50px 0 150px;
}

.why-choose-section .feature {
  position: relative;
  text-align: center;
  transition: all .4s ease;
}

.why-choose-section .icon-circle {
  width: 130px;
  height: 130px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: -1;
}

.why-choose-section .icon-circle img {
  width: 80px;
  height: auto;
}


.why-choose-section .feature .info-box {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translate(-50%, 20px);
  /* width: 280px; */
  width: 100%;
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 2;
}
.why-choose-section .splide__arrows .splide__arrow{
    top: 40%;
    border: 1px solid var(--secondary-color);
}
.why-choose-section .splide__arrows .splide__arrow svg {
    fill: var(--secondary-color);
}
.why-choose-section .feature .info-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-bottom: 20px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  top: -20px;
}

.why-choose-section .icon-circle::after {
  content: '';
  width: 115%;
  height: 115%;
  position: absolute;
  top: -12px;
  left: -12px;
  border-radius: 50%;
  opacity: 0;
}

.why-choose-section .feature:hover .icon-circle::after {
  opacity: 1;
  animation: border 1s ease 1 forwards;
}

.why-choose-section .feature .info-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
}

.why-choose-section .feature:hover .icon-circle{
  transform: scale(1.2);
}

.why-choose-section .feature:hover .info-box {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media(max-width:1023px){
  .why-choose-section{
    margin: 0 0 60px;
  }
}
@media(max-width:767px) {
  .why-choose-section .feature .info-box {
    position: relative;
    top: 0px;
    opacity: 1;
    visibility: visible;
    margin-bottom: 30px;
  }
  .why-choose-section .feature .icon-circle::after {
    opacity: 1;
    animation: border 1s ease 1 forwards;
  }

  .why-choose-section .features .splide__track {
      padding: 15px 0 0;
  }
}

@-webkit-keyframes border {
  0% {
    border: 0;
  }

  25% {
    border-left: 3px solid var(--secondary-color);
  }

  50% {
    border-left: 3px solid var(--secondary-color);
    border-top: 3px solid var(--secondary-color);
  }

  75% {
    border-left: 3px solid var(--secondary-color);
    border-top: 3px solid var(--secondary-color);
    border-right: 3px solid var(--secondary-color);
  }

  100% {
    border-left: 3px solid var(--secondary-color);
    border-top: 3px solid var(--secondary-color);
    border-right: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
  }
}

/* why choose us end */

/* lagacy image css start */

.lagacy-img_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}
.lagacy-img_wrapper{
    padding-bottom: 100px;
}
.lagacy-img_wrapper img:last-child{
  display: none;
}
@media(max-width:1023px){
    .lagacy-img_wrapper{
        padding-bottom: 80px;
    }
}
@media(max-width:767px){
    .lagacy-img_wrapper{
        padding-bottom: 60px;
    }
    .lagacy-img_wrapper img:last-child{
      display: block;
    }
    .lagacy-img_wrapper img:first-child{
      display: none;
    }
}

/* lagacy image css end */


/* video section css start */

.video-section{
    padding: 100px 0;
}
.video-section video {
    height: 100%;
    width: 100%;
}
@media(max-width:1023px){
    .video-section{
        padding: 80px 0;
    }
}
@media(max-width:767px){
    .video-section{
        padding: 60px 0;
    }
}

/* video section css start */

/* certificates start */

.certification-section {
  margin: 0 auto 100px;
  text-align: center;
}

.certification-section h2 {
    font-size: 36px;
    line-height: 46px;
    color: var(--primary-color);
    padding-bottom: 50px;
    text-align: center;
}

.certification-section .splide__slide img {
  width: 100px;
}

.certification-section .img_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width:1023px) {
  .certification-section {
    margin: 0 auto 80px;
  }
}

@media (max-width: 767px) {

  .certification-section .splide__slide {
    width: 100%;
    max-width: 250px;
  }

  .certification-section {
    margin: 0 auto 60px;
  }

      .certification-section h2 {
        font-size: 26px;
        line-height: 30px;
    }
}

/* certificates end */

/* clientele start */


.clientele h2 {
  font-size: 36px;
    line-height: 46px;
    color: var(--primary-color);
    padding-bottom: 50px;
    text-align: center;
}
.clientele #clientele-slider {
  display: none;
}
.clientele .logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.clientele .logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.clientele .logo-box:hover {
  transform: translateY(-5px);
}

.clientele .logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.clientele-section {
  margin: 0 0 100px;
}
@media(max-width:1200px){
  .clientele #clientele-slider {
    display: block;
  }
  .clientele .logo-grid{
    display: none;
  }
  .clientele .logo-box {
      padding: 15px;
  }
}

@media(max-width:1023px) {
  section.clientele-section {
    margin: 0 0 80px;
  }
}

@media(max-width:767px) {
  section.clientele-section {
    margin: 0 0 60px;
  }
    .clientele h2 {
        font-size: 26px;
        line-height: 30px;
    }
}


/* clientele end */


/* Our Product Range section start */

.category-section h2 {
    font-size: 36px;
    line-height: 46px;
    color: var(--primary-color);
    padding-bottom: 50px;
    text-align: center;
}

.category-section .category-icon img {
  width: 60px;
  margin-bottom: 8px;
}

.category-section .category-slider .splide__track .splide__list .splide__slide .category-img-main .category-img img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 10px 10px 0 0;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin-bottom: 30px;
}

.category-section .category-slider .splide__track .splide__list .splide__slide .category-img-main .category-img:hover img {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.splide__arrows .splide__arrow {
  background: transparent;
  border: 1px solid var(--primary-color);
  height: 32px;
  width: 32px;
  transition: all 0.3s ease-in-out;
}

.splide__arrows .splide__arrow.splide__arrow--prev {
  left: -40px;
}

.splide__arrows .splide__arrow.splide__arrow--next {
  right: -40px;
}

.splide__arrows .splide__arrow svg {
  fill: var(--primary-color);
}

.category-section .category-slider .splide__track .splide__list .splide__slide .category-img-main {
  padding: 0 10px;
}
.category-section .category-slider .splide__track{
    padding: 20px 0 0 ;
}
.category-section .category-slider .splide__track .splide__list .splide__slide .category-img-main .category-img {
  margin: 0 2px 10px;
  display: inline-block;
}

.category-section .category-slider .splide__track .splide__list .splide__slide .category-img-main span {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 500;
	line-height: 26px
}
@media(max-width:1440px){
    .splide__arrows .splide__arrow.splide__arrow--prev {
        left: -10px;
    }
    .splide__arrows .splide__arrow.splide__arrow--next {
        right: -10px;
    }
}

@media (max-width:767.98px) {
  .category-section .category-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .splide__arrows .splide__arrow {
    height: 26px;
    width: 26px;
  }

  .splide__arrows .splide__arrow svg {
    height: 12px;
    width: 12px;
  }

  .category-section .category-slider .splide__track .splide__list .splide__slide .category-img-main {
    padding: 0 10px;
  }

  .category-section .category-slider .splide__track .splide__list .splide__slide .category-img-main span {
    font-size: 16px;
  }
  .category-section h2 {
        font-size: 26px;
        line-height: 30px;
    }
}

/* Our Product Range end */

/* global css start */

.global-map-sec {
  margin: 0 0 100px;
}

.global-map-sec h2 {
 	 font-size: 36px;
    line-height: 46px;
    color: var(--primary-color);
    padding-bottom: 50px;
    text-align: center;
}

.global-map-sec .map-img img {
  width: 100%;
 object-fit: cover
}

@media(max-width:1023px) {
  .global-map-sec {
    margin: 0 0 80px;
  }
}

@media(max-width:767px) {
  .global-map-sec {
    margin: 0 0 60px;
  }

  .global-map-sec h2 {
    font-size: 32px;
  }
}

/* global css end */

/* footer start */
footer {
    padding-bottom: 100px;
}
.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  gap: 30px;
}

.footer-links h3 {
  font-size: 36px;
  line-height: 60px;
  font-weight: 500;
  padding-bottom: 20px;
  color: var(--primary-color);
}

.footer-links .links-block {
    width: calc(20% - 10px);
}

.footer-links .contact-block {
    width: calc(40% - 10px);
}
.footer-links .contact-block .social-links img{
  width: 25px;
  transition: all .3s ease-in-out;
}
.footer-links .contact-block .social-links ul{
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-links .contact-block .social-links a {
    background: var(--primary-color);
    width: 45px;
    border-radius: 50%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent; 
}
.footer-links .contact-block .social-links a:hover img{
    transform: scale(1.3);
}

.footer-links a:hover{
    text-decoration: underline !important;
}

.footer-links .contact-block .address p {
    padding: 0 0 20px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    color: var(--primary-color);
}

.footer-links .links-block ul {
  list-style: none;
  padding: 0;
}

.footer-links .links-block ul li {
  margin: 6px 0;
}

.footer-links .contact-info {
  display: flex;
  flex-direction: column;
}
.footer-links .links-block ul li a,
.footer-links .contact-block .contact-info p,
.footer-links .contact-block .contact-info a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 20px;
}
@media(max-width:1440px){
    .footer-links .links-block ul li a, .footer-links .contact-block .contact-info p, .footer-links .contact-block .contact-info a {
        font-size: 20px;
        padding-bottom: 15px;
    }
}
@media(max-width:1023px){
    .footer-links .links-block {
        width: calc(50% - 20px);
    }
    .footer-links .contact-block {
        width: calc(50% - 10px);
    }
    footer {
        padding-bottom: 80px;
    }
}
@media(max-width:767px){
    .footer-links .links-block , .footer-links .contact-block{
        width:100%
    }
    footer {
        padding-bottom: 60px;
    }
    .footer-links .links-block ul li a, .footer-links .contact-block .contact-info p, .footer-links .contact-block .contact-info a {
        font-size: 18px;
    }
    .footer-links .contact-block .address p {
        font-size: 18px;
    }
    .footer-links h3{
      font-size: 26px;
    }
}
/* footer css end */

/* our edge start */

.aboutsection {
  text-align: center;
  margin: 0 0 100px;
}

.aboutsection .section-heading {
    font-size: 36px;
    line-height: 46px;
    color: var(--primary-color);
    padding-bottom: 50px;
    text-align: center;
}

.aboutsection .link-card {
  border-radius: 5px;
  padding: 30px 20px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}
.aboutsection .link-card p {
    font-size: 14px;
	padding-top: 10px;
    text-decoration: underline;
    color: var(--primary-color);
}
.aboutsection .link-card .icon {
  margin-bottom: 40px;
}

.aboutsection .link-card h3 {
  font-size: 1.2rem;
  font-weight: 300;
	 color: var(--primary-color);
}

@media(max-width:1023px){
  .aboutsection {
    margin: 0 0 80px;
  }
  .aboutsection .link-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:767px){
  .aboutsection {
    margin: 0 0 60px;
  }
  .aboutsection .section-heading{
    font-size: 26px;
  }
  .aboutsection .link-card h3 {
    font-size: 14px;
  }
  .aboutsection .link-card {
    padding: 15px;
  }
	.aboutsection .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* our edge end */

/* get in touch start */

.get-in-button-footer {
  position: fixed;
  right: 10px;
  bottom: 0px;
}

.rm-request-link--global {
  position: fixed;
  bottom: 16px;
  right: 16px;
  transform: scale(1);
  transition: opacity 0.3s cubic-bezier(.08, .45, .33, 1.01), visibility 0.3s, transform 0.3s;
}

.rm-request-link {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 134px;
  height: 134px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #C9AB81;
}

.rm-request-link:before {
  position: absolute;
  content: '';
  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;
  background-image: url('https://landing.lvspices.com/wp-content/uploads/2025/09/request-get-in-touch-1.svg');
  background-size: contain;
  z-index: 1;
  animation: spin 14s linear infinite;
  transform-origin: center;
}

@media(max-width:767px){
  .rm-request-link {
      width: 100px;
      height: 100px;
  }
  .rm-request-link svg {
      max-width: 28px !important;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
  @keyframes wave {
      0% { transform: rotate(0deg); }
      20% { transform: rotate(15deg); }
      40% { transform: rotate(-10deg); }
      60% { transform: rotate(10deg); }
      80% { transform: rotate(-5deg); }
      100% { transform: rotate(0deg); }
    }

    .waving-hand {
      display: inline-block;
      animation: wave 2s infinite; 
      transform-origin: 50% 100%; 
  }
.rm-request-link svg {
  position: relative;
  z-index: 2;
  max-width: 48px;
  width: 100%;
  fill: #C9AB81;

}

.rm-request-link__hand {
  transform-origin: 50% 100%;
  transition: .3s transform;
}

@media(max-width:767px){
  .label-swatch{
    padding:10px 5px;
    font-size:13px;
  }
}

/* get in touch end */

/* about section start */

section.about-lv {
    margin: 0 0 100px;
}
.about-lv .story_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}
.about-lv .content_wrapper {
    text-align: center;
    width: 100%;
    max-width: 50%;
}
.about-lv .content_wrapper h2 {
    font-size: 40px;
    line-height: 40px;
    color: var(--primary-color);
}
.about-lv .content_wrapper p {
    font-size: 20px;
    line-height: 30px;
    padding: 30px 0 0;
    color: var(--primary-color);
}
.about-lv .image_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
@media(max-width:767px){
	.about-lv .story_wrapper {
		flex-direction: column-reverse;
		gap: 30px
	}
	.about-lv .content_wrapper {
		max-width: 100%;
	}
	.about-lv .content_wrapper h2 {
		font-size: 30px;
		line-height: 30px;
	}
	section.about-lv {
		margin: 0 0 80px;
	}
	.about-lv .content_wrapper p {
		font-size: 18px;
		line-height: 27px;
	}
}

/* about end */

/* .franchise-section start */
.franchise-section {
  text-align: center;
  margin: 0 0 100px;
}

.franchise-section .title {
  text-align: center;
}

.franchise-section .title .spice-logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 120px;
}

.franchise-section .title h2 {
  	font-size: 36px;
    line-height: 46px;
    color: var(--primary-color);
    padding-bottom: 50px;
    text-align: center;
}

.franchise-form {
  max-width: 800px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.franchise-form .form-group {
  text-align: left;
}
.franchise-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 300;
    color: var(--primary-color);
}

.franchise-form input {
    width: 100%;
    padding: 12px 25px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 20px;
    background-color: transparent;
    height: 50px;
    font-weight: 300;
    color: #363537;
}

.franchise-form input::placeholder {
  color: #363537;
}

.franchise-form .form-actions input#privacy {
  height: 20px;
  width: initial;
}

.franchise-form .form-check label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.franchise-form .full-width {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.franchise-form .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.franchise-form .confirm-btn {
    background: transparent;
    border: 1px solid #C9AB81;
    color: #C9AB81;
    padding: 12px 25px;
    width: 100%;
    border-radius: 5px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    font-size: 20px;
}

.franchise-form .confirm-btn:hover {
  background: #C9AB81;
  color: #000;
}

.franchise-form .custom-checkbox {
    display: inline-block;
    width: 100%;
    max-width: 20px;
    height: 20px;
    background-color: var(--primary-color);;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}
.franchise-form input[type="checkbox"]:checked+label .custom-checkbox::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.franchise-form input[type="checkbox"] {
  display: none;
}

@media(max-width:767px){
	.franchise-section .title h2 {
  	font-size: 26px;
    padding-bottom: 30px;
}
	.franchise-form {
    grid-template-columns: 1fr;
    gap: 25px;
		margin: 0 auto 80px
}
}

/* .franchise-section end */

/* =========== testimonial-section START ======== */

.testimonial-section .splide__list .splide__slide .testimonial-inner {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
section#testimonial-slider-section {
    background: url('https://landing.lvspices.com/wp-content/uploads/2025/09/first3.png');
    padding: 100px 0;
	margin: 50px 0 0
}
.testimonial-section .testimonial-box .review-star {
    margin: 30px auto 0;
}

.testimonial-section .testimonial-box .review-star img {
    width: 100%;
    max-width: 20px;
}

.testimonial-section .testimonial-content {
  padding-top: 20px;
}

.testimonial-section .testimonial-box .testimonial-content span {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
}

.testimonial-section .testimonial-box .testimonial-content p {
  font-size: 20px;
	line-height: 24px;
  font-weight: 300;
  margin-top: 25px;
  letter-spacing: 1px;
}

.testimonial-section .testimonial-box .testimonial-review-img {
  width: 100%;
  overflow: hidden;
  max-width: 100px;
  margin: 0 auto 20px;
  border-radius: 50px;
}

.testimonial-section .testimonial-box .testimonial-review-img img {
  width: 100%;
  object-fit: cover;
}
.testimonial-section .splide__arrows .splide__arrow {
    border: 1px solid var(--secondary-color);
}
.testimonial-section .splide__arrows .splide__arrow svg {
    fill: var(--secondary-color);
}
@media(max-width:1023px) {
  .testimonial-section .splide__list .splide__slide .testimonial-inner {
    padding: 40px;
  }

  .testimonial-section .testimonial-box .testimonial-content p {
    font-size: 16px;
  }
	section#testimonial-slider-section{
		padding: 80px 0 60px;
		margin: 0px 0 0;
	}
}

/* =========== testimonial-section END ======== */

/* brochure css start */

.brochure-section {
  color: #C9AB81; 
  text-align: center;
  padding: 0 0 100px;
  position: relative;
}

.brochure-section .section-title {
    font-size: 36px;
    line-height: 46px;
    color: var(--primary-color);
    padding-bottom: 20px;
    text-align: center;
}

.brochure-section .section-subtitle {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 40px;
  opacity: 0.85;
}

.brochure-section .brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.brochure-section .brochure-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C9AB81;
  color: #0d0d0d;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brochure-section .brochure-card:hover {
  transform: translateY(-5px);
}
@media(max-width:1023px){
	.brochure-section {
  padding: 0 0 80px;
}
}
@media(max-width:767px){
	.brochure-section .section-title {
    font-size: 26px;
    line-height: 36px;
}
.brochure-section {
  padding: 0 0 60px;
}

}
/* brochure css end */