:root {
  --primary-color: #2196f3;
  --primary-glow: rgba(33, 150, 243, 0.8);
  --secondary-color: #9c27b0;
  --text-color: #ffffff;
  --bg-color: #0a0a12;
  --nav-bg: rgba(16, 16, 26, 0.7);
  --dropdown-bg: rgba(20, 20, 35, 0.8);
  --hover-color: #3f51b5;
  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-color: rgba(0, 0, 0, 0.3);
  --neon-glow: 0 0 10px rgba(33, 150, 243, 0.5),
    0 0 20px rgba(33, 150, 243, 0.3), 0 0 30px rgba(33, 150, 243, 0.1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-bg: linear-gradient(135deg, var(--bg-color), #151530);
  --glass-effect: saturate(180%) blur(10px);
  --border-radius: 12px;
  --text-description: rgba(255, 255, 255, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Raleway;
  /* background: var(--gradient-bg); */
  color: var(--text-color);
  line-height: 1.6;
  /* min-height: 90vh; */
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0rem;
}

p {
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
}

h2 {
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
}

/* Header and Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  backdrop-filter: var(--glass-effect);
  -webkit-backdrop-filter: var(--glass-effect);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px var(--shadow-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: var(--transition-medium);
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: var(--neon-glow);
  position: relative;
  display: inline-block;
  transition: var(--transition-medium);

}


.logo img {
  width: 200px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-weight: 300;
  padding: 0.5rem 1rem;
  transition: all var(--transition-medium);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  text-shadow: var(--neon-glow);
  background: #000;
  transform: translateY(-2px);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  /* border-radius: 50%; */
  box-shadow: var(--neon-glow);
}

/* Icons */
.icon {
  transition: var(--transition-medium);
  vertical-align: middle;
}

.chevron-icon {
  transition: transform var(--transition-medium);
}

.has-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.hidden {
  display: none;
}

/* Dropdown Menus */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute !important;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #fff;
  backdrop-filter: var(--glass-effect);
  -webkit-backdrop-filter: var(--glass-effect);
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all var(--transition-medium);
  /* box-shadow: 0 10px 30px var(--shadow-color); */
  z-index: 100;
  color: #000;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  /* background: var(--dropdown-bg); */
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  transform: rotate(45deg);
  /* backdrop-filter: var(--glass-effect); */
  -webkit-backdrop-filter: var(--glass-effect);
}

.dropdown li {
  list-style: none;
}

.dropdown a {
  color: #000;
  text-decoration: none;
  padding: 0.7rem 1rem;
  display: block;
  transition: all var(--transition-medium);
  margin-bottom: 2px;
}

.dropdown a:hover {
  background: rgb(0 0 0);
  color: #ffffff;
  /* transform: translateX(5px); */
  border-radius: 0px;
}

/* Search Bar */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-color);
  width: 180px;
  transition: all var(--transition-medium);
  font-size: 0.9rem;
}

.search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  width: 240px;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.3);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-btn {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 5px;
  transition: var(--transition-fast);
}

.search-btn:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Theme Toggle */
.theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  cursor: pointer;
  padding: 0.6rem;
  font-size: 1.2rem;
  transition: all var(--transition-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(15deg);
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.6rem;
  transition: var(--transition-medium);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-color);
  position: absolute;
  transition: all var(--transition-medium);
  border-radius: 10px;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
  width: 70%;
}

.hamburger span:last-child {
  top: 18px;
}

/* Mobile Menu Active State */
.nav-active .hamburger span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-active .hamburger span:last-child {
  transform: rotate(-45deg);
  top: 9px;
}

/* Content Styling */
.content {
  margin-top: 70px;
  padding: 2rem;
}

.hero {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg,
      var(--primary-color),
      var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--text-description);
}

.cta-button {
  background: linear-gradient(45deg,
      var(--primary-color),
      var(--secondary-color));
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-medium);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
}

.section {
  padding: 5rem 2rem;
}

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition-medium);
}

.feature:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(33, 150, 243, 0.3);
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature p {
  color: var(--text-description);
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    width: 80%;
    height: 100vh;
    padding: 2rem;
    transition: right var(--transition-slow);
    border-left: 1px solid var(--border-color);
  }

  .nav-active .nav-menu {
    right: 0;
  }

  ul {
    margin-bottom: 0px !important;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    background: rgba(33, 150, 243, 0.15);
  }

  .dropdown {
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    padding-left: 1rem;
    margin-left: 1rem;
    display: none;
    box-shadow: none;
    border-left: 1px solid var(--border-color);
    transform: none;
    transition: all var(--transition-medium);
  }

  .dropdown::before {
    display: none;
  }

  .has-dropdown.active .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  .search-container {
    width: 100%;
  }

  .search-input,
  .search-input:focus {
    width: 100%;
  }

  .search-input {
    padding: 0.8rem 1rem;
  }

  .theme-toggle {
    align-self: flex-start;
  }

  .chevron-icon {
    position: absolute;
    right: 1rem;
  }

  .has-dropdown.active .chevron-icon {
    transform: rotate(180deg);
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 1rem;
  }

  .nav-menu {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .content {
    padding: 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }
}



.hero-slider {
  width: 100%;
  height: 700px;
  display: flex;
  position: relative;
  z-index: 0;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.678),
      rgba(0, 0, 0, 0.651));
  z-index: 1;
}

/* Slide Text */
.hero-style {
  height: 100vh;
  transition: all 0.4s ease;
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 690px;
  position: relative;
  z-index: 99;
  text-align: center;
}

.hero-style .slide-title h2 {
  font-size: 50px;
  font-weight: 400;
  color: #ffffff;
  margin: 20px 0px;
  text-transform: capitalize;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
  line-height: normal;
}

.hero-style .slide-text p {

  margin-bottom: 40px;

}

/* Buttons */
.theme-btn,
.theme-btn-s2 {
  background-color: transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 25px;
  border: none;
  /* border-radius: 4px; */
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.theme-btn-s2 {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.theme-btn-s3 {
  background-color: transparent;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 25px;
  border: none;
  /* border-radius: 4px; */
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.theme-btn-s3 {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

.theme-btn:hover,
.theme-btn-s2:hover {
  background-color: #fff;
  color: #000;
}

.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.slide-btns a:first-child {
  margin-right: 10px;
}

/* Swiper Arrows */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #f0f0f0;
  background: transparent;
  text-align: center;
  line-height: 53px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-prev:before,
.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: #f0f0f0;
  display: inline-block;
}

.hero-slider .swiper-button-prev:before {
  content: "\f060";
}

.hero-slider .swiper-button-next:before {
  content: "\f061";
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
  text-align: left;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 50px;
  left: 48%;
  /* transform: translateX(-50%); */
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.about-slider img {
  width: 100%;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.collection-list {
  background-color: #F5F5F5;
  padding: 80px 50px;
}

.collection-list-head {
  text-align: center;
  color: #000;
}

.collection-list-head h2 {
  font-size: 36px;
  font-weight: 300;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 20px;
}

.coll-grid-d img {
  width: 100%;
}

.coll-grid-d h4 {
  color: #000;
  text-transform: uppercase;
  text-align: center;
  padding-top: 15px;
  text-decoration: none;
}

.coll-grid-d {
  text-align: center;
  text-decoration: none;

}

/* image wrapper */
.coll-img {
  position: relative;
  overflow: hidden;
  /* aspect-ratio: 2 / 2; */
}

/* image */
.coll-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* hover zoom INSIDE only */
.coll-img:hover img {
  transform: scale(1.1);
}

/* text stays after image */
.coll-grid-d h4 {
  color: #000;
  text-transform: uppercase;
  padding-top: 15px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.product-quartz {
  padding: 80px 50px;

}

.p-quartz {
  text-align: center;
  color: #242424;
}

.quartz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 20px;
}

.quartz-pro {
  position: relative;
  overflow: hidden;
}

/* image */
.quartz-pro img {
  width: 100%;
  display: block;
  height: 40vh;
  object-fit: cover;
}

/* text overlay */
.quartz-pro p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  text-align: center;
}

/* optional dark overlay */
.quartz-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.35); */
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* hover states */
.quartz-pro:hover p {
  opacity: 1;
  background-color: #000;
  background-color: #00000052;
  padding: 20px;

}

.enviroment {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.658), rgba(0, 0, 0, 0.658)), url("../img/home/PERSONALLY-CURATE-SECTION-min-scaled.jpg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 80px;
}

.enviro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.enviro-fi {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.envo-data {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.envo-data img {
  width: 60px;
}

.enviro {
  display: flex;
  flex-direction: column;
  gap: 20px;


}

.enviro h2 {
  text-transform: capitalize;
  font-size: 46px;
}

.about-sliere {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}


.about-sec {
  padding: 80px 80px;
}

.about-contet {
  color: #000;
}

.about-contet {
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.about-contet h2 {
  text-transform: capitalize;
}


.visulizer {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.658), rgba(0, 0, 0, 0.658)), url("../img/home/visualizer.jpg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 80px;
}

.visulizer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
}

.vis-ual {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vis-ulizer img {
  width: 100%;
}

.vis-ual h2 {
  font-weight: 600;
  font-size: 46px;
  text-transform: capitalize;
}

.vis-ual p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
}

.grid-help {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: center;
  padding: 70px 100px 0 100px;

}

.helpfull {
  background: #f5f5f5;
  padding: 60px 0;
}

.helpu h2 {
  text-align: center;
  color: #000;
}

.help-box {
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  box-shadow: 0px 0.5px 16px 0px rgba(0, 0, 0, 0.15);

}

.help-box a {
  text-align: center;
  color: #fff;
  background-color: #000;
  padding: 8px 10px;
  font-size: 20px;
  text-decoration: none;
}

.box-h {
  background: #f5f5f5;
  padding: 40px;
}

.box-h img {
  width: 70px;
}


.footer {
  background-color: #000;
  padding: 40px 0;
}

.grid-5 {
  display: grid;
  grid-template-columns: 30% repeat(4, 1fr);
  gap: 16px;
}

.img-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.img-logo img {
  width: 200px;
  padding-bottom: 20px;
}

.footer a {
  color: #7b7b7b;
  text-decoration: none;
}

.grid-item ul {
  padding-left: 0px;
  list-style-type: none;
  text-align: center;
}

.grid-item h3 {
  color: #7b7b7b;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  padding-bottom: 10px;
}

.grid-item li {
  padding-bottom: 15px;
}

.grid-main a {}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
}

.footer-social a {
  font-size: 25px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-bottom: 15px;
}

.footer-cop p {
  color: #7b7b7b;
  font-size: 16px;
}

/* end home page */

.design-gallery {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.458), rgba(0, 0, 0, 0.458)), url("../img/AVA-BLUE-KITCHEN-VIEW-min-scaled.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  margin-top: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.gallery-head h2 {
  text-transform: capitalize;
  font-size: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  width: fit-content;
  margin: auto;
}

.gallery-head p {
  padding-top: 15px;
  font-size: 16px;
}

.design-gallerys {
  padding: 80px 0;
}

.main .containers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  justify-content: center;
  align-items: center;

}

.main .card {
  background: #ffffff;
  color: #333333;
  border-radius: 0px;
  border: none;
}

.main .card-image {
  background: #ffffff;
  display: block;
  height: 45vh;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .main .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}

.contact-us {
  padding: 80px 0;
  margin-top: 50px;
  background-color: #f5f5f5;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.contact-details h2 {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 15px;
}

.contact-details a {
  color: #000;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;

}

.astra img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  padding-bottom: 15px;
}

.varient img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  padding-bottom: 15px;


}

.varient-are {
  background-color: transparent;
  color: #ffffff;
  font-size: 14px !important;
  font-weight: 600;
  padding: 5px 25px;
  border: 2px solid #000;
  /* border-radius: 4px; */
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;

  text-decoration: none;
  width: 100%;
  text-align: center;
}

.contact-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;

}

.con-forms {
  padding: 80px 0;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
  color: #000;
}

.form-group input,
.form-group textarea {
  border: 1px solid #e0e0e0;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

.form-group.full {
  margin-top: 30px;
}

.form-btn {
  margin-top: 30px;
  padding: 12px 24px;
  background: #f5f5f5;
  border: none;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  width: fit-content;
}

.form-btn:hover {
  background: #eaeaea;
}

.contact-f span {
  color: #7b7b7b;
}

.contact-f h3 {
  color: #000;
  font-size: 22px;
  padding: 10px 0 20px;
}

.review {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.review h2 {
  text-align: center;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 15px;
}

.carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}

.carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }

  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}

.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  /* background-color: grey; */
  color: #000;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-item p {
  font-size: 16px;
  text-align: center;
  color: #7b7b7b;
  line-height: 25px;
}

.carousel-item {
  text-align: center;

}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e");
  filter: brightness(0.5);
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
  filter: brightness(0.5);

}

.faq-section {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.558), rgba(0, 0, 0, 0.558)), url("../img/contact-banner.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  margin-top: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 40px 0;
  margin: 0;
  list-style: none;
}

ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFF;
  padding: 20px;
  margin: 0 auto 15px auto;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}

ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}

ul.accordion-list li h3 {
  font-weight: 500;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  margin: 0;
  font-size: 18px;
  cursor: pointer;
  color: #000;
}

ul.accordion-list li h3:after {
  content: "";
  font-family: "material-design-iconic-font";
  position: absolute;
  right: 0;
  top: 0;
  color: #000;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}

ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 300;
  padding: 20px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 15px 0;
  font-size: 16px;
  color: #000;
}

.manual-sec {
  padding: 60px 0;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.tab {
  padding: 15px 35px;
  border: none;
  background: #f1f2f3;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  transition: all .5s ease-in-out;

}

.tab:hover {
  background: #000;
  color: #fff;
  transition: all .5s ease-in-out;
}

.tab.active {
  background: #000;
  color: #fff;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cards {
  background-color: #69727D21;
  text-align: center;
  padding: 20px 0 0 0;
}

.cards img {
  width: 100%;
  max-width: 155px;
  margin-bottom: 25px;
}

.cards h3 {
  font-size: 24px;
  margin-bottom: 50px;
  color: #000;
  font-weight: 400;
}

/* Download Button */
.download {
  width: 100%;
  padding: 15px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.downloada {
  text-decoration: none;
}

.download-btn {
  padding: 8px 30px;
  background: #69727d;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
}

.warranty-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0px 60px
}

.warranty-card {
  padding: 60px 0;
}

.form-wrapper {
  padding: 0px 60px 40px;
}

.section-title {
  font-size: 15px;
  letter-spacing: 0.5px;
  margin: 30px 0px;
  padding-bottom: 25px;
  font-weight: 600;
  border-bottom: 1px solid #f5f5f5;
  color: #000
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: span 2;
}

label {
  font-size: 15px;
  margin-bottom: 6px;
  color: #000;
  font-weight: 600;
}

label span {
  color: red;
}

input[type="text"],
input[type="email"],
input[type="date"] {
  border: 1px solid #ddd;
  padding: 8px 10px;
  height: 36px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
}

.submit-btn {
  margin-top: 30px;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 13px;
  cursor: pointer;
}

.warraanty-form h2 {
  font-size: 36px;
  font-weight: 400;
  color: #000;
  text-align: center;
  padding: 40px 0 40px;
}

.blog-sections {
  padding: 80px 0;
  margin-top: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  width: 380px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Image */
.image-wrap {
  position: relative;
}

.image-wrap img {
  width: 100%;
  display: block;
}

/* Date badge */
.date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  padding: 0px 15px;
  text-align: center;
  font-weight: 600;
  color: #000;
}

.date-badge .day {
  display: block;
  font-size: 22px;
}

.date-badge .month {
  font-size: 14px;
}

/* Category label */
.category {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 1px;
}

/* Content */
.contents {
  padding: 40px 30px 30px;
  text-align: center;
}

.contents h3 {
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 15px;
  color: #000;
}

/* Meta */
.meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 15px;
}

.meta .dot {
  margin: 0 6px;
}

/* Text */
.contents p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Read more */
.read-more {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  letter-spacing: 1px;
}

.visualizer {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.558), rgba(0, 0, 0, 0.558)), url("../img/visualizer.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 90vh;
  margin-top: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.visualizer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
  padding: 0px 60px;
}

.visualizer-btn {
  background-color: #000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 25px;
  border: 2px solid #000;
  /* border-radius: 4px; */
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.visual-cont {
  text-align: left;
  text-transform: capitalize;
}

.visual-cont h2 {
  text-align: left;
  text-transform: capitalize;
  padding-bottom: 25px;
}

.visual-img img {
  width: 100%;
}

.visulizers {
  display: flex;
  gap: 25px;
  align-items: center;
}

.serch-visulizer {
  padding: 80px 0;
}

.vis-content {
  color: #000;
}

.vis-content p {
  color: #767676;
  font-size: 18px;
  line-height: 28px;
}

.vis-content h3 {
  font-size: 22px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.vis-btn {
  display: flex;
  gap: 15px;
}

.fill-btn {
  background-color: #212121;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 25px;
  border: 2px solid #212121;
  /* border-radius: 4px; */
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.fill-btn:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #212121;

}

.rev-btn {
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 25px;
  border: 2px solid #212121;
  /* border-radius: 4px; */
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.rev-btn:hover {
  background-color: #000;
  color: #fff;
  transition: all 0.3s ease;

}

.visual-step {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.step-vis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.visual-step-img img {
  width: 100%;
}

.visual-step-data {
  color: #000;
}

.step-t-step h2 {
  font-size: 62px;
  font-weight: 700;
}

.step-t-step {
  padding-bottom: 10px;
}

.help-here {
  padding: 100px 0;
}

.need-help {
  text-align: center;
  color: #000;
}

.need-help h3 {
  font-size: 36px;
}

.product-section {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.658), rgba(0, 0, 0, 0.658)), url("../img/product.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  margin-top: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;

}

.mx-525 {
  max-width: 800px;
  margin: auto;
  padding-top: 15px;
  line-height: 28px;
}

.about-page-s {
  padding: 60px 0;
}

.abt-f-sec h2 {
  color: #000;
  padding-bottom: 25px;
}

.abt-f-sec p {
  color: #767676;
  line-height: 28px;
  font-size: 16px;
}

.about-bg-home {
  background-color: #FFFFFF47;
  padding: 20px 50px;
  width: fit-content;
  margin: auto;
}

.abtt-section {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.558), rgba(0, 0, 0, 0.558)), url("../img/contact-banner.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 90vh;
  margin-top: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.variant-quartz {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-top: 50px;
  padding: 60px 0 0;
}

.quartz-con {
  background-color: #000;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;

}

.quartz-con p {
  line-height: 28px;
}

.quartz-con h3 {
  font-size: 20px;
  padding-top: 5px;
}

.quartz-con h2 {
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  width: fit-content;
}

.quartz-img img {
  width: 100%;
}

.surface-bg {
  background-color: #F5F5F5;
  padding: 20px;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;

}

.surfaces p {
  text-align: center;
  color: #000;
}

.br-right {
  border-right: 2px solid #000;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 30px;
}

.breadcrumb {
  font-size: 14px;
  color: #777;
}

.grid-icons button {
  border: 1px solid #ccc;
  background: #fff;
  padding: 6px 10px;
  margin-left: 5px;
  cursor: pointer;
  font-size: 14px;
}

.grid-icons button:hover {
  background: #000;
  color: #fff;
}

.product-grid {
  display: grid;
  gap: 25px;
  padding-bottom: 50px;
}

/* Grid variations */
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-card img {
  width: 100%;
  height: 30vh;
  display: block;
  object-fit: cover;
}

.product-card h3 {
  text-align: center;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.product-card {
  overflow: hidden;
}

.image-box {
  position: relative;
  overflow: hidden;
}

/* Both images */
.image-box img {
  width: 100%;
  display: block;
  transition: all 0.5s ease;
  transition: all 1s ease-in-out;

}

/* Hover image hidden by default */
.img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1s ease-in-out;

}

/* On hover: swap images */
.product-card:hover .img-default {
  opacity: 0;
  transform: scale(1.1);
  transition: all 1s ease-in-out;

}

.product-card:hover .img-hover {
  opacity: 1;
  transform: scale(1.2);
  transition: all 1s ease-in-out;
}

/* Title */
.product-card h3 {
  text-align: center;
  margin-top: 12px;
  font-size: 16px;
}

.product-bread-war {
  padding-top: 20px;
  color: #000;
}

.inquiry-pro {
  display: flex;
  justify-content: center;
  padding: 50px 0;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.btn-flexs {
  display: flex;
  gap: 15px;
}

.products-main-slides {
  padding: 50px 0 0;
}

.product-specifications {
  padding: 40px 15px 80px;
  background-color: #f5f5f5;
  color: #000;
}

.spec-title {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}

.spec-table {
  border: 2px solid #e4e4e4;
  max-width: 800px;
  margin: auto;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid #e4e4e4;
  ;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key,
.spec-value {
  padding: 16px 20px;
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.spec-key {
  text-align: center;
  border-right: 2px solid #e4e4e4;
  ;
}

.spec-value {
  text-align: center;
  font-weight: 500;
  color: #777;
}

.poppular-product {
  padding: 50px 0;
  background-color: #f5f5f5;
}

.populers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.populers .product-card img {
  width: 100%;
  height: 30vh;
  display: block;
}

.poppular-product h2 {
  color: #000;
  padding: 0px 0 30px;
  text-align: center;
  text-transform: capitalize;
}

.mainSwiper {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.mainSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

/* ===== THUMB SLIDER ===== */
.thumbSwiper {
  height: 130px;
}

.thumbSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail active */
.thumbSwiper .swiper-slide {
  opacity: 0.4;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s;
}

.thumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #000;
}

/* ===== ARROWS ===== */
.main-next,
.main-prev {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.main-prev {
  left: 15px;
}

.main-next {
  right: 15px;
}

.main-next::after,
.main-prev::after {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.main-next::after {
  transform: translate(-60%, -50%) rotate(45deg);
}

.main-prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.product-main-banner {
  height: 600px;
  background-image: url("../img/product/quartz/003-Amazonite-Slab.jpg");
  /* your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* zoom effect using pseudo layer */
.product-main-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.8s ease;
}

/* hover zoom */
.product-main-banner:hover::before {
  transform: scale(1.5);
}

/* keep content above */
.product-main-banner {
  position: relative;
}

.product-main-banner .container {
  position: relative;
  z-index: 1;
}

.resource {
  padding: 80px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.help-box p {
  line-height: 28px;
  color: #000;
}

.resources-grid .box-h img {
  width: 120px;
}

#goTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#goTopBtn:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}