@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #e8c9f0;
  --secondary: #441e82;
  --white: #fff;
  --radius: 1rem;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --font-family: 'Poppins', sans-serif;
  --dark-secondary: #210e3e;
  --background: url('./data/main-bg.png');
}

@font-face {
  font-family: 'Recoleta';
  src: url('./data/Fonts/recoleta-regulardemo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--primary);
  overflow-x: hidden;
  position: relative;
}

header {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  -webkit-mask-image: linear-gradient(to bottom,
      black 0%,
      black 80%,
      transparent 100%);
  mask-image: linear-gradient(to bottom,
      black 0%,
      black 80%,
      transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

}

.logo img {
  height: 40px;
}

nav.desktop-nav {
  display: flex;
  gap: 1.5rem;
}

nav.desktop-nav a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.1rem;
  padding: 0.8rem;
  font-weight: 600;
  transition: 
    background 0.35s cubic-bezier(0.4, 0.2, 0.2, 1),
    color 0.25s cubic-bezier(0.4, 0.2, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0.2, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0.2, 0.2, 1);
}

nav.desktop-nav a:hover {
  background: linear-gradient(180deg, #6e2da6, #ffffff00);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 24px rgba(106, 27, 154, 0.18), 0 2px 8px #6e2da644;
  transform: scale(1.08) translateY(-2px) rotate(-1deg);
}

.hero-btn,
.signature-btn,
.viewproduct-btn,
.contactus-btn,
.action-btn {
  transition:
    background 0.3s cubic-bezier(0.4, 0.2, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0.2, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0.2, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.hero-btn:hover,
.signature-btn:hover,
.viewproduct-btn:hover,
.contactus-btn:hover,
.action-btn:hover {
  box-shadow: 0 8px 32px rgba(138,43,226,0.18), 0 2px 8px #ba55d344;
  transform: scale(1.09) translateY(-3px) rotate(-2deg);
  filter: brightness(1.08) drop-shadow(0 0 8px #e0b0ff88);
}

.product-card,
.signature-card,
.whychoose-card,
.testimonial-card,
.expert-card,
.video-card,
.luxury-card {
  transition:
    box-shadow 0.4s cubic-bezier(0.4, 0.2, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0.2, 0.2, 1),
    border 0.3s cubic-bezier(0.4, 0.2, 0.2, 1),
    background 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.product-card:hover,
.signature-card:hover,
.whychoose-card:hover,
.testimonial-card:hover,
.expert-card:hover,
.video-card:hover,
.luxury-card:hover {
  box-shadow: 0 16px 48px rgba(186,85,211,0.22), 0 4px 24px #e0b0ff44;
  transform: scale(1.05) translateY(-6px) rotate(-1deg);
  border-color: #ba55d3;
  background: linear-gradient(120deg, #f2e6ff 70%, #e0b0ff 100%);
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  padding: 3rem 1rem;
}

.mobile-nav.active {
  pointer-events: auto;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  color: var(--secondary);
  cursor: pointer;
  transition: transform 0.2s ease;
  user-select: none;
  z-index: 1001;
}

.close-btn:hover {
  transform: scale(1.2);
}

.mobile-nav a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  text-align: center;
}

.mobile-nav a::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: var(--secondary);
  margin: 10px auto 0;
}

.home-main {
  min-height: 100vh;
  width: 100vw;
  background: url('./data/contactus-bg.png') center center/cover no-repeat;
  font-family: 'Poppins', Arial, sans-serif;
  overflow-x: hidden;
  padding: 1.4rem;
  padding-top: 60px;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: rgba(243, 234, 252, 0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  margin: 40px auto 32px auto;
  max-width: 1150px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  height: 100%;
}

.hero-img-box {
  background: transparent;
  border-radius: 24px;
  padding: 2rem 1rem 1rem 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 45%;
  height: auto;
}

.hero-img-box img {
  width: clamp(320px, 20vw, 550px);
  height: 100%;
  object-fit: contain;
}

.hero-content-box {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  padding: 1.9rem;
  width: 55%;
  height: 100%;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.hero-content-box h1 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  font-weight: 800;
  color: #6a1b9a;
  margin-bottom: 12px;
  font-family: 'Recoleta', sans-serif;
  letter-spacing: 1px;
}

.hero-content-box p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #4a116b;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-align: justify;
}

.hero-btns {
  display: flex;
  gap: 18px;
}

.hero-btn {
  background: #8f3bd8;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: clamp(0.5rem, 1vw, 0.8rem) clamp(1rem, 2vw, 1.2rem);
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.09);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.hero-btn:hover {
  background: #6a1b9a;
  transform: scale(1.06);
}

/* Why Choose Section */
.whychoose-section {
  background: rgba(243, 234, 252, 0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  max-width: 1150px;
  margin: 0 auto 32px auto;
  padding: 2rem 2rem;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
}

.whychoose-title {
  font-size: 2rem;
  font-weight: 700;
  color: #6a1b9a;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whychoose-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.whychoose-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(106, 27, 154, 0.09);
  padding: 1.5rem 1rem;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
  width: 100%;
}

.whychoose-card-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}

.whychoose-card-header i {
  color: var(--secondary)
}

.whychoose-card:hover {
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  transform: translateY(-8px) scale(1.04);
}

.whychoose-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}

.whychoose-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #6a1b9a;
  text-align: left;
  width: 73%;
  margin-bottom: 8px;
}

.whychoose-card p {
  font-size: 0.98rem;
  color: #4a116b;
  line-height: 1.5;
  text-align: justify;
}

/* Signature Collection Section */
.signature-section {
  background: rgba(243, 234, 252, 0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  max-width: 1150px;
  margin: 0 auto 32px auto;
  padding: 2rem 2rem;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
}

.signature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6a1b9a;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.signature-title i {
  color: #6a1b9a;
  font-size: 1.2em;
}

.signature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.signature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(106, 27, 154, 0.09);
  padding: 1.5rem 1rem;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
  width: 100%;
}

.signature-card:hover {
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  transform: translateY(-8px) scale(1.04);
}

.signature-img-wrap {
  background: radial-gradient(circle, #5c0387, black);
  border-radius: 18px;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.signature-img-wrap img {
  max-width: 70px;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0px 0px 16px rgb(255, 255, 255));
  transition: transform 0.4s ease;
}

.signature-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #6a1b9a;
  margin-bottom: 8px;
}

.signature-card p {
  font-size: 0.98rem;
  color: #4a116b;
  line-height: 1.5;
  margin-bottom: 18px;
  text-align: justify;
}

.signature-btn {
  background: #8f3bd8;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  margin-top: auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.09);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.signature-btn:hover {
  background: #6a1b9a;
  transform: scale(1.06);
}

.sgproduct-inquire {
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  background: linear-gradient(90deg, #9754b8, #5d038a);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bullets {
  width: 35px;
  height: 35px;
}

.sgproduct-inquire:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #a254e4, #542da3);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/*----------------about-us-page-----------------*/

.aboutus-bg {
  min-height: 100vh;
  width: 100vw;
  background: url('./data/contactus-bg.png') center center/cover no-repeat;
  padding: 2rem;
  padding-top: 80px;
  box-sizing: border-box;
}

.aboutus-glass {
  background: rgba(243, 234, 252, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  max-width: 1200px;
  margin: 0 auto 32px auto;
  padding: 2rem 2rem;
}

.aboutus-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.aboutus-bullet {
  width: 32px;
  height: 32px;
}

.aboutus-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #6a1b9a;
  margin: 0;
}

.aboutus-main-section .aboutus-main-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.aboutus-img-col {
  background: radial-gradient(circle, #5c0387, black);
  border-radius: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  width: 35%;
  height: -webkit-fill-available;
}

.aboutus-img-col img {
  width: 120px;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0px 0px 50px rgb(255, 255, 255));
}

.aboutus-text-col {
  flex: 1 1 320px;
  color: #4a116b;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Poppins', Arial, sans-serif;
  justify-content: center;
  text-align: justify;
  line-height: 1.6;
  height: -webkit-fill-available;
}

.aboutus-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6a1b9a;
  margin: 0;
}

.aboutus-section-content {
  color: #4a116b;
  font-size: 1.08rem;
  font-family: 'Poppins', Arial, sans-serif;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  text-align: justify;
}

.aboutus-mission-section,
.aboutus-vision-section {
  margin-bottom: 24px;
}

.aboutus-title-row i {
  color: #6a1b9a;
  font-size: 1.2em;
}

/*-------------------------------------about--us--ends--------------------------------------*/

/*------------------------------------product-main-starts--------------------------*/

.products-main {
  min-height: 100vh;
  width: 100vw;
  background: url('./data/contactus-bg.png') center center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  padding-top: 76px;
}

.products-section {
  background: rgba(243, 234, 252, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  max-width: 1300px;
  margin: 0;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  padding-bottom: 0;
}

.products-header {
  margin-bottom: 32px;
}

.products-main-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.products-title {
  display: inline-block;
  font-size: 2.1rem;
  font-weight: 700;
  color: #6a1b9a;
  font-family: 'Poppins', Arial, sans-serif;
  letter-spacing: 0.5px;
}

.products-header-icon {
  color: #6a1b9a;
  font-size: 1.6rem;
  vertical-align: middle;
  margin-right: 10px;
}

.product-category-container {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
}

.pdt-bullet {
  width: 40px;
}

.products-desc {
  color: #4a116b;
  font-size: 1.1rem;
  font-family: 'Poppins', Arial, sans-serif;
  margin-bottom: 18px;
  margin-top: 8px;
  width: 100%;
  text-align: justify;
}

.products-category {
  margin-bottom: 36px;
}

.products-category-title {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-family: 'poppins', Arial, sans-serif;
  font-weight: 700;
  color: #6a1b9a;
  margin-bottom: 18px;
  gap: 1rem;
}

.products-category-title i {
  color: #6a1b9a;
  font-size: 1.2em;
}

.products-cards-container {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 10px;
}

.product-card {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13), 0 2px 12px rgba(106, 27, 154, 0.09);
  padding: 24px 18px 18px 18px;
  width: 20%;
  min-height: fit-content;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: box-shadow 0.3s, transform 0.3s, border 0.3s, background 0.3s;
  position: relative;
  border: 1px solid #b39ddb;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  width: 45%;
  max-width: 270px;
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(106, 27, 154, 0.18), 0 4px 24px rgba(106, 27, 154, 0.15);
  transform: translateY(-8px);
  transform: 0.3s ease;
  border-color: #6a1b9a;
  background: linear-gradient(135deg, #f2e6ff 60%, #fff 100%);
}

.product-card:hover img {
  transform: scale(1.1) rotate(-2deg);
}

.product-card .product-img-wrap {
  background: radial-gradient(circle, #5c0387, black);
  border-radius: 18px;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.product-card img {
  height: 110px;
  width: 110px;
  object-fit: contain;
  filter: drop-shadow(0px 0px 16px rgb(255, 255, 255));
  transition: transform 0.4s ease;
}

.product-card .product-title {
  font-weight: 700;
  color: #232323;
  font-size: 1.08rem;
  margin-bottom: 12px;
  text-align: left;
}

.product-card .product-btn {
  background: #6a1b9a;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  margin-top: auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.09);
  transition: background 0.2s;
  text-decoration: none;
}

.product-card .sgproduct-inquire {
  width: 100%;
}

.product-card .product-btn:hover {
  background: #4a116b;
}

/*------------------------------------product-main-ends--------------------------*/

/*-----------------------------------view-product-starts--------------------------*/

.viewproduct-main {
  min-height: 100vh;
  width: 100vw;
  background: url('./data/contactus-bg.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-top: 85px;
}

.viewproduct-section {
  background: rgba(243, 234, 252, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.viewproduct-card-outer {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.viewproduct-img-box {
  background: radial-gradient(circle, #5c0387, black);
  border-radius: 28px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  height: auto;
  width: 45%;
}

.viewproduct-img-box img {
  max-width: 180px;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0px 0px 50px rgb(255, 255, 255));
  transition: transform 0.3s;
}

.viewproduct-img-box img:hover {
  transform: scale(1.07) rotate(-2deg);
}

.viewproduct-details-box {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13), 0 2px 12px rgba(106, 27, 154, 0.09);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  border: 2.5px solid #b39ddb;
  transition: box-shadow 0.3s, border 0.3s;
  width: 55%;
}

.viewproduct-details-box:hover {
  box-shadow: 0 16px 48px rgba(106, 27, 154, 0.18), 0 4px 24px rgba(106, 27, 154, 0.15);
  border-color: #6a1b9a;
}

.viewproduct-brand {
  color: #b39ddb;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.viewproduct-title {
  font-weight: 700;
  color: #6a1b9a;
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: left;
  letter-spacing: 0.5px;
  font-family: 'Poppins', Arial, sans-serif;
}

.viewproduct-size {
  display: inline-block;
  background: #6a1b9a;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 4px 18px;
  margin-bottom: 14px;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.09);
}

.viewproduct-desc {
  color: #232323;
  font-size: 1.08rem;
  font-family: 'Poppins', Arial, sans-serif;
  margin-bottom: 18px;
  text-align: justify;
}

.viewproduct-benefits-title {
  color: #6a1b9a;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.viewproduct-benefits-title i {
  color: #6a1b9a;
  font-size: 1.2em;
}

.viewproduct-details-list {
  margin-bottom: 18px;
  padding-left: 0;
  list-style: none;
  width: 100%;
}

.viewproduct-details-list li {
  color: #232323;
  font-size: 1rem;
  margin-bottom: 8px;
  padding-left: 0;
  position: relative;
  transition: color 0.2s;
}

.viewproduct-details-list li::before {
  content: "•";
  color: #6a1b9a;
  font-size: 1.2em;
  margin-right: 8px;
}

.viewproduct-details-list li:hover {
  color: #6a1b9a;
}

.viewproduct-btns {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.viewproduct-btn {
  background: #6a1b9a;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.09);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.viewproduct-btn:hover {
  background: #4a116b;
  transform: scale(1.06);
}

.viewproduct-error {
  color: #6a1b9a;
  font-size: 1.2rem;
  text-align: center;
  margin: 80px 0;
  font-weight: 600;
}

/*-----------------------------------view-product-ends--------------------------*/

/*-------------------------------------testimonial-section-starts---------------------------------*/

.testimonials-main {
  min-height: 100vh;
  width: 100vw;
  background: url('./data/contactus-bg.png') center center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
}

.testimonials-section {
  background: rgba(243, 234, 252, 0.65);
  backdrop-filter: blur(12px);
  --webkit-backdrop-filter: blur(12px);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 100px;
  height: auto;
  border-radius: 25px;
  padding: 2rem 1rem;
}

.testimonials-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6a1b9a;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 24px;
  padding: 8px 22px;
  box-shadow: 0 2px 12px rgba(106, 27, 154, 0.09);
  margin: 0 auto 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-rating-badge i {
  color: #ffd700;
  font-size: 1.2em;
}

.testimonials-cards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0.5rem;
}

.testimonials-title-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  margin: 1rem;
}

.testimonials-top-title-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  width: 100%;
}

.testimonials-title {
  text-align: left;
  font-size: 2.1rem;
  font-weight: 700;
  color: #6a1b9a;
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  letter-spacing: 0.5px;
  padding: 0.4rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(106, 27, 154, 0.09);
  padding: 28px 22px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  border: 2px solid #b39ddb;
  opacity: 1;
  height: 220px;
}

.testimonial-card .testimonial-quote {
  font-size: 1.05rem;
  color: #4a116b;
  font-family: 'Poppins', Arial, sans-serif;
  font-style: italic;
  line-height: 1.5;
  position: relative;
}

.testimonial-quote p {
  font-size: 14px;
}

.testimonial-card .testimonial-quote i {
  color: #b39ddb;
  font-size: 1.2em;
  margin-right: 8px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.09);
}

.user-name {
  color: #6a1b9a;
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

.user-role {
  color: #b39ddb;
  font-size: 0.95rem;
  font-weight: 400;
  display: block;
}

.experts-cards-container {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.8rem;
}

.expert-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(106, 27, 154, 0.09);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #b39ddb;
  height: auto;
  max-width: 80%;
  overflow-y: auto;
}

.expert-card:hover {
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  transform: translateY(-6px) scale(1.04);
  border-color: #6a1b9a;
}

.expert-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgb(67 37 84 / 85%);
  border: 1px solid #1b0e33;
}

.expert-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 12px;
}

.expert-info {
  text-align: left;
  margin-bottom: 8px;
}

.expert-name {
  color: #6a1b9a;
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

.expert-role {
  color: #b39ddb;
  font-size: 0.95rem;
  font-weight: 400;
  display: block;
}

.expert-quote {
  text-align: justify;
  color: #4a116b;
  font-size: 1rem;
  font-style: italic;
  text-align: left;
}

.video-cards-container {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.video-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(106, 27, 154, 0.09);
  padding: 18px 12px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid #b39ddb;
  transition: box-shadow 0.2s, transform 0.2s;
  max-width: 80%;
}

.video-card:hover {
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  transform: translateY(-6px) scale(1.04);
  border-color: #6a1b9a;
}

.video-card iframe {
  width: 100%;
  min-height: 180px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.video-caption {
  color: #6a1b9a;
  font-size: 1rem;
  font-weight: 500;
}

/*-------------------------------------testimonial-section-ends---------------------------------*/

/*-------------------------------------store--locator--starts----------------------------------*/

.store-locator-bg-wrapper {
  min-height: 100vh;
  background: url('./data/contactus-bg.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.store-locator-section {
  width: 100%;
  max-width: 1100px;
  margin: 48px auto;
  padding: 40px;
}

.store-locator-heading {
  text-align: center;
  margin-bottom: 32px;
}

.store-locator-heading h2 {
  color: #6a1b9a;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Poppins', Arial, sans-serif;
  margin-bottom: 8px;
}

.store-locator-subheading {
  color: #4a116b;
  font-size: 1.1rem;
  font-family: 'Poppins', Arial, sans-serif;
}

.store-locator-content-glass {
  background: rgba(242, 230, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.store-locator-searchbar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  padding: 9px 16px;
  box-shadow: 0 2px 12px rgba(106, 27, 154, 0.07);
  gap: 12px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 10px auto;
}

.store-locator-inputbar {
  width: 80%;
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 1.1rem;
  color: #2d2d2d;
  padding: 8px;
  font-family: 'Poppins', Arial, sans-serif;
}

#searchBtn {
  background: #6a1b9a;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', Arial, sans-serif;
}

#searchBtn:hover {
  background: #4a116b;
}

.store-locator-main-block {
  display: flex;
  gap: 32px;
  width: 100%;
}

.store-locator-map {
  flex: 1;
  min-width: 280px;
  min-height: 320px;
  background: #e9e1f7;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(106, 27, 154, 0.07);
  height: auto;
  padding: 0.5rem;
}

.store-locator-salon-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 260px;
  height: 500px;
  overflow-x: auto;
  padding: 0.5rem;
}

.store-locator-salon-details::-webkit-scrollbar {
  display: none;
}

.salon-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(106, 27, 154, 0.07);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.salon-card:hover {
  box-shadow: 0 4px 24px rgba(106, 27, 154, 0.15);
  transform: translateY(-2px) scale(1.02);
}

.salon-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.salon-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6a1b9a;
  margin: 0;
}

.salon-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.98rem;
}

.salon-actions {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #6a1b9a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Poppins', Arial, sans-serif;
  box-shadow: 0 1px 6px rgba(106, 27, 154, 0.09);
  text-decoration: none;
}

.action-btn:hover {
  background: #4a116b;
}

/*---------------------------store-locator-ends--------------------------------------*/

/*---------------------------contact-us-starts--------------------------------------*/

.contactus-bg-wrapper {
  height: auto;
  width: 100vw;
  background: url('./data/contactus-bg.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding: 1rem;
  padding-top: 76px;
}

.contactus-glass-container {
  display: flex;
  gap: 48px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 950px;
  width: 100%;
  margin: 20px auto;
  flex-wrap: wrap;
}

.contactus-form-section {
  flex: 2 1 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 260px;
  max-width: 480px;
}

.contactus-main-heading {
  font-size: 2.4rem;
  font-family: 'Poppins', serif;
  color: #6a1b9a;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.contactus-subheading {
  color: #4a116b;
  font-size: 1.1rem;
  margin-bottom: 32px;
  font-family: 'Poppins', serif;
}

.contactus-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group label {
  font-weight: 500;
  color: #6a1b9a;
  margin-bottom: 6px;
  display: block;
  font-size: 1.05rem;
  font-family: 'Poppins', Arial, sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #b39ddb;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  background: rgba(255, 255, 255, 0.35);
  color: #2d2d2d;
  transition: border 0.2s, background 0.2s;
  margin-top: 4px;
  box-shadow: none;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #6a1b9a;
  background: rgba(242, 230, 255, 0.55);
}

.contactus-btn {
  background: linear-gradient(90deg, #6a1b9a 60%, #b39ddb 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.09);
  transition: background 0.2s;
  margin-top: 10px;
  width: 100%;
}

.contactus-btn:hover {
  background: linear-gradient(90deg, #4a116b 60%, #9575cd 100%);
}

.contactus-info-section {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 220px;
  max-width: 260px;
  gap: 32px;
  color: #6a1b9a;
}

.contactus-info-block h2 {
  color: #6a1b9a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Poppins', Arial, sans-serif;
}

.contactus-info-block address,
.contactus-info-block p {
  color: #4a116b;
  font-size: 1rem;
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  font-style: normal;
}

.contactus-info-block a {
  color: #6a1b9a;
  text-decoration: none;
}

.contactus-info-block a:hover {
  text-decoration: underline;
  color: #4a116b;
}

.contactus-social-icons {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.contactus-social-icons a {
  color: #6a1b9a;
  font-size: 1.6rem;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}

.contactus-social-icons a:hover {
  color: #4a116b;
  transform: scale(1.15);
}

.contactus-alert {
  margin: 0 auto 18px auto;
  margin-bottom: 0;
  max-width: 500px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.08rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 12px #6a1b9a22;
}

.contactus-alert.success {
  background: #e6f9e6;
  color: #5c246d;
  border: 2px solid #3a1751;
}

.contactus-alert.error {
  background: #ffeaea;
  color: #c62828;
  border: 2px solid #e57373;
}

footer {
  background: #f2e6ff;
  box-shadow: 0 -2px 16px rgba(106, 27, 154, 0.09);
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
}

.footer-main-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand-block {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}

.footer-brand-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #6a1b9a;
  margin-bottom: 2px;
}

.footer-brand-desc {
  color: #4a116b;
  font-size: 1rem;
  margin-bottom: 8px;
  max-width: 320px;
}

.footer-social-icons {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.footer-social-icons a {
  color: #6a1b9a;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}

.footer-social-icons a:hover {
  color: #4a116b;
  transform: scale(1.15);
}

.footer-pages-block {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-pages-block h4 {
  color: #6a1b9a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-pages-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-pages-block li {
  margin-bottom: 8px;
}

.footer-pages-block a {
  color: #4a116b;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-pages-block a:hover {
  color: #6a1b9a;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #e1bee7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px 12px 24px;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: #6a1b9a;
  flex-wrap: wrap;
}

.footer-policy-links {
  display: flex;
  gap: 18px;
}

.footer-policy-links a {
  color: #4a116b;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}

.footer-policy-links a:hover {
  color: #6a1b9a;
  text-decoration: underline;
}

/* ============================= */
/* 📱 Mobile & Tablet Responsive */
/* ============================= */

@media (max-width: 600px) {
  .aboutus-bg {
    padding: 0.7rem;
    padding-top: 76px;
  }

  .aboutus-glass {
    padding: 1.2rem;
    border-radius: 10px;
  }

  .aboutus-title-row {
    gap: 8px;
  }

  .aboutus-bullet {
    width: 22px;
    height: 22px;
  }

  .aboutus-main-title {
    font-size: 1.05rem;
  }

  .aboutus-section-title {
    font-size: 0.98rem;
  }

  .aboutus-section-content,
  .aboutus-text-col {
    font-size: 0.98rem;
  }

  .products-section {
    padding: 0.7rem;
  }

  .product-card {
    width: 47.5%;
    padding: 0.5rem
  }

  .product-card .product-title {
    margin-left: 5px;
  }

  .products-title {
    font-size: 1.5rem;
    width: 80%;
  }

  .products-desc {
    margin-bottom: 0;
  }

  .products-category-title {
    margin-top: 10px;
  }

  .products-category {
    margin-bottom: 0;
  }

  .experts-cards-container,
  .video-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .testimonials-cards-container {
    -webkit-mask-image: linear-gradient(to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%);
    mask-image: linear-gradient(to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .testimonials-top-title-container img {
    width: 28px;
    height: 28px;
  }

  .video-cards-container {
    height: 280px;
    overflow-x: auto;
    padding: 0.6rem;
  }

  .expert-card,
  .video-card {
    width: 100%;
    padding: 10px 4px;
  }

  .video-card {
    max-width: 85%;
    padding: 1rem;
    justify-content: space-between;
  }

  .video-card iframe {
    height: 80%;
    min-height: 120px;
  }

  .testimonials-cards-container {
    height: 570px;
    overflow-y: auto;
  }

  .expert-card {
    max-height: fit-content;
    padding: 1.2rem;
  }

  .testimonials-section {
    padding: 0.6rem;
  }

  .testimonials-title {
    font-size: 1.3rem;
    text-align: left;
  }

  .testimonial-card {
    padding: 1rem;
    width: 100%;
    height: fit-content;
  }

  .testimonial-card {
    font-size: 15px;
  }

  .testimonials-cards-row {
    flex-direction: column;
    align-items: center;
  }

  .testimonials-title-container {
    align-items: flex-start;
    margin: 1rem 0;
    gap: 0;
  }

  .testimonials-title-container img.bullets {
    width: 24px;
    height: 24px;
    margin-top: 9px;
    margin-left: 0.8rem;
  }

  .store-locator-content-glass {
    padding: 20px;
  }

  .store-locator-section {
    padding: 20px;
  }

  .store-locator-searchbar {
    padding: 8px 8px;
    max-width: 100%;
  }

  .salon-card {
    padding: 14px 10px;
  }

  .salon-name {
    font-size: 1rem;
  }

  .store-locator-map {
    min-height: 180px;
  }

  #searchBtn span {
    display: none;
  }

  .contactus-info-section,
  .contactus-form-section {
    padding: 0;
  }

  .contactus-main-heading {
    font-size: 1.5rem;
  }

  .contactus-subheading {
    font-size: 1rem;
  }

  .footer-bottom {
    padding: 8px 4px 6px 4px;
    font-size: 0.93rem;
  }

  .footer-brand-title {
    font-size: 1.05rem;
  }

   nav.desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  header {
    padding: 1rem 1.5rem;
  }

  .first-section-text-data,
  .first-section-hero {
    padding: 1.4rem;
  }

  .first-section-hero img {
    max-height: 40vh;

  }

  .first-section-text-data h1,
  .first-section-text-data h5 {
    width: 100%;
    text-align: left;
  }

  .first-section-text-data h1 {
    font-size: 1.8rem;
  }

  .first-section-text-data h5 {
    font-size: 0.9rem;
  }

  .second-section-text-data h5 {
    font-size: 0.95rem;
  }

  .second-section-card {
    width: auto;
    padding: 1.5rem;
  }

  .second-section-card h3 {
    font-size: 1.1rem;
  }

  .second-section-card p {
    font-size: 0.95rem;
  }

  .fancy-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .parent {
    font-size: 24px;
  }

  .child {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
    .home-main {
    padding: 1rem;
    padding-top: 76px;
  }

  .bullets {
    width: 28px;
    height: 28px;
  }

  @media (max-width :360px) {
    .hero-btn {
      width: 100%;
      text-align: center;
    }

    .hero-btns {
      width: 100%;
    }
  }

  .hero-btns {
    flex-wrap: wrap;
  }

  .hero-section {
    flex-direction: column;
    gap: 10px;
    margin: 18px auto 18px auto;
    padding: 1rem;
  }

  .whychoose-section {
    padding: 1rem;
  }

  .whychoose-title {
    margin-left: 15px;
    font-size: clamp(1.4rem, 1vw, 1.7rem);
  }

  .signature-section {
    padding: 1rem;
  }

  .whychoose-grid,
  .signature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .whychoose-card,
  .signature-card {
    width: 100%;
    padding: 1rem;
  }

  .whychoose-card {
    max-height: fit-content;
  }

  .hero-img-box {
    width: 100%;
    height: 120px;
    padding: 0.5rem 0.2rem 0.2rem 0.2rem;
    height: clamp(230px, 30vh, 400px);
  }

  .hero-img-box img {
    height: 100%;
    width: 100%;
  }

  .hero-content-box {
    width: 100%;
    padding: 1.5rem;
    padding-bottom: 0.8rem;
  }

  .viewproduct-card-outer {
    flex-direction: column;
    gap: 18px;
  }

  .viewproduct-img-box img {
    height: auto;
  }

  .viewproduct-title {
    font-size: 1.1rem;
  }

  .viewproduct-size {
    font-size: 0.95rem;
    padding: 3px 12px;
  }

  .viewproduct-btns {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  nav.desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .second-section-grid {
    grid-template-columns: 1fr;
  }

  .second-section-card-part2 p {
    width: 100%;
  }

  .second-section-text-data h2 {
    font-size: 2rem;
  }

  .second-section-text-data h5 {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .first-section-text-data h1 {
    font-size: 2.2rem;
  }

  .first-section-text-data h5 {
    font-size: 0.95rem;
  }

  .fancy-button {
    font-size: 14px;
    padding: 12px 26px;
  }

}

@media (max-width: 900px) {
  .aboutus-glass {
    padding: 1.2rem 0.7rem;
    max-width: 98vw;
  }

  .aboutus-main-section .aboutus-main-content {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .aboutus-img-col {
    height: 300px;
    padding: 1.2rem 0.5rem;
    margin: 0 auto;
    width: 100%;
  }

  .aboutus-img-col img {
    max-width: 120px;
    max-height: 180px;
    height: auto;
  }

  .aboutus-main-title {
    font-size: 1.3rem;
  }

  .aboutus-section-title {
    font-size: 1.1rem;
  }

  .products-main {
    padding: 0.8rem;
    padding-top: 80px;
  }

  .products-section {
    padding: 0.8rem;
  }

  .product-card {
    padding: 0.8rem;
  }

  .sgproduct-inquire {
    padding: 12px;
  }

  .products-section {
    padding: 1.2rem 0.5rem;
  }

  .products-cards-container {
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }

  .products-category-title .bullets {
    width: 23px;
    height: 23px;
  }

  .products-main-header .bullets {
    width: 30px;
    height: 30px;
  }

  .experts-cards-container,
  .video-cards-container {
    gap: 14px;
  }

  .expert-card,
  .video-card {
    min-width: 180px;
    max-width: 100%;
    padding: 1.5rem;
  }

  .testimonials-section {
    padding-top: 32px;
  }

  .testimonials-cards-row {
    gap: 18px;
  }

  .testimonial-card {
    min-width: 220px;
    max-width: 100%;
    padding: 18px 10px;
    height: 200px;
  }

  .store-locator-main-block {
    flex-direction: column;
    gap: 18px;
  }

  .store-locator-map,
  .store-locator-salon-details {
    min-width: 0;
    width: 100%;
  }

  .store-locator-salon-details {
    max-height: 460px;
  }

  .salon-card {
    padding: 1rem;
  }

   .contactus-bg-wrapper {
    padding: 1rem;
    padding-top: 76px;
  }

  .contactus-glass-container {
    flex-direction: column;
    gap: 32px;
    padding: 1rem;
    border-radius: 15px;
  }

  .contactus-info-section,
  .contactus-form-section {
    max-width: 100%;
  }

   .footer-main-container {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 12px 8px 8px 8px;
  }
}

@media (max-width: 1024px) {
  header {
    padding: 1rem 2rem;
  }

  .first-section {
    flex-direction: column-reverse;
    padding-top: 80px;
    min-height: fit-content;
    /* Adjust for mobile */
  }

  .first-section-text-data,
  .first-section-hero {
    width: 100%;
    padding: 2rem;
  }

  .first-section-hero img {
    max-height: 50vh;
    /* Adjust for mobile */
  }

  .first-section-text-data h5 {
    max-width: 100%;
  }

  .second-section-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 1rem;
  }

  .second-section-card-part2 p {
    width: 80%;
  }

  .third-section-card h4 {
    font-size: 1rem;
  }
}

@media (max-width: 1100px) {
  .product-category-container {
    grid-template-columns: repeat(1, 2fr);
  }

  .viewproduct-main {
    padding: 1rem;
    padding-top: 80px;
  }

  .viewproduct-section {
    padding: 1rem;
  }

  .viewproduct-card-outer {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .viewproduct-img-box,
  .viewproduct-details-box {
    width: 100%;
    height: auto;
    padding: 1rem;
    border-radius: 18px;
  }

  .viewproduct-img-box {
    height: 300px;
    border-radius: 18px;
    width: 100%;
  }

  .viewproduct-img-box img {
    max-width: 120px;
    max-height: 180px;
  }

  .viewproduct-title {
    font-size: 1.3rem;
  }
}
#preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            background: linear-gradient(45deg, #0c0e1d, #1a1c2f, #2d325c);
        }
        
        #canvas-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .welcome-container {
            position: relative;
            z-index: 20;
            text-align: center;
            padding: 2rem;
        }
        
        .welcome-text {
            font-size: 5.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: linear-gradient(90deg, #e0b0ff, #ba55d3, #8a2be2);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 20px rgba(138, 43, 226, 0.5);
            opacity: 0;
            transform: translateY(50px);
            perspective: 1000px;
        }
        
        .welcome-subtext {
            font-size: 1.4rem;
            color: #d8bfd8;
            opacity: 0;
            transform: translateY(30px);
            letter-spacing: 3px;
            font-weight: 300;
            text-transform: uppercase;
        }
        
        .progress-bar {
            width: 300px;
            height: 4px;
            background: rgba(138, 43, 226, 0.2);
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            opacity: 0;
        }
        
        .progress {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #8a2be2, #ba55d3);
            border-radius: 10px;
        }
        
        #main-content {
            display: none;
            opacity: 0;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .content-section {
            background: rgba(22, 15, 43, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            margin: 2rem 0;
            box-shadow: 0 15px 35px rgba(74, 20, 140, 0.3);
            border: 1px solid rgba(138, 43, 226, 0.2);
        }
        
        .luxury-title {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #e0b0ff, #ba55d3);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .luxury-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #e0d0ff;
            margin-bottom: 2rem;
        }
        
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .luxury-card {
            background: rgba(106, 27, 154, 0.2);
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.4s ease;
            border: 1px solid rgba(186, 85, 211, 0.2);
            text-align: center;
        }
        
        .luxury-card:hover {
            transform: translateY(-8px);
            background: rgba(106, 27, 154, 0.3);
            box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
        }
        
        .card-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #d8bfd8;
        }
        
        .card-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #e6e6fa;
        }
        
        .card-text {
            font-size: 1.1rem;
            color: #d8bfd8;
        }
        
        .footer {
            text-align: center;
            padding: 2rem;
            color: rgba(200, 180, 255, 0.7);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .welcome-text {
                font-size: 2.7rem;
            }
            
            .luxury-title {
                font-size: 2.2rem;
            }
            
            .grid-container {
                grid-template-columns: 1fr;
            }
        }