* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body:has(.products-page) {
  background: #0a0e17;
}

section,
header,
footer {
  width: 100%;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

a {
  text-decoration: none;
}

.header {
  position: fixed;
  top: 20px;
  /* left: 1px; */
  /* right: 1px; */
  z-index: 9999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 25px;

  transition: .4s ease;

  border-radius: 20px;

}

.header.scrolled {
  /* background: rgba(0, 0, 0, .55); */
  background: rgba(0, 0, 0, .70);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo {
  background: #fff;
  /* padding: 12px 20px; */
  padding: 2px 10px;
  border-radius: 20px;
}

.logo img {
  height: 60px;
  display: block;
  /* background-color: red; */
}

.navbar {
  display: flex;
  gap: 35px;
}

.navbar a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.menu-btn {
  display: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* .hero {
  min-height: 100vh;

  background: url("./assets/img/banner/1.png");
  background-size: cover;
  background-position: center;

  margin: 20px;
  border-radius: 30px;

  position: relative;

  display: flex;
  align-items: center;
} */

.hero {
  min-height: 100vh;
  width: calc(100% - 40px);
  max-width: calc(100% - 40px);

  background-image: url("../img/banner/Desktop\ View.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  margin: 20px;
  border-radius: 30px;

  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.555),
      rgba(0, 0, 0, 0.164));


  border-radius: 30px;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 650px;

  padding-left: 80px;
  margin-bottom: -150px;

  /* background-color: red; */
}

.hero-content h1 {
  font-family: 'Anton', sans-serif;
  color: #fff;
  font-size: 8rem;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-content h1 span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  text-transform: none;
  font-weight: 500;
  line-height: 1;
  margin-top: 5px;
}

.hero-content p {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
  max-width: 550px;
  margin-top: 2px;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;

  background: #fff;
  color: #111;

  padding: 10px 20px;

  border-radius: 50px;

  font-weight: 600;
}

.section {
  padding: 100px 8%;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 40px;
}

.section p {
  font-size: 18px;
  color: #666;
}

@media(max-width:991px) {

  .hero-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-content h1 {
    font-size: 55px;
  }

}

@media(max-width:768px) {

  .header {
    top: 10px;
    /* left: 10px;
    right: 10px;
    padding: 8px 12px; */
  }

  .logo img {
    height: 35px;
  }

  .menu-btn {
    display: block;
  }

  .navbar {
    position: fixed;

    top: 0;
    right: -100%;

    width: 280px;
    height: 100vh;

    background: #111;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    transition: .4s;
  }

  .navbar.active {
    right: 0;
  }

  .navbar a {
    font-size: 22px;
  }

  .hero {
    min-height: 90vh;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin: 10px;
    background-image: url("../img/banner/Mobile\ View.png");
  }

  .hero-content {
    padding: 0 20px;
    margin-bottom: 0;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h1 span {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 15px;
    max-width: 100%;
  }

  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

}

@media(max-width:480px) {

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content h1 span {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 14px;
  }

}

.menu-btn {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

.close-btn {
  display: none;
  position: fixed;
  top: 25px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 1002;
}

@media(max-width:768px) {

  .menu-btn {
    display: block;
  }

  .close-btn.show {
    display: block;
  }

}

.menu-btn {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

.close-btn {
  display: none;
  position: fixed;
  top: 25px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 1002;
}

@media(max-width:768px) {

  .menu-btn {
    display: block;
  }

  .close-btn.show {
    display: block;
  }

}

.interior-section {
  background: #f8f6f2;
  padding: 100px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
  position: relative;
}

.interior-content {
  flex: 1;
  max-width: 500px;
}

.tagline {
  color: #c8a45d;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.interior-content h2 {
  color: #222222;
  font-size: 58px;
  line-height: 1.2;
  margin: 20px 0;
  font-weight: 700;
}

.interior-content h2 span {
  color: #c8a45d;
}

.interior-content p {
  color: #666666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-theme {
  display: inline-block;
  padding: 14px 35px;
  border: 2px solid #c8a45d;
  background: #ffffff;
  color: #222222;
  transition: .4s ease;
  border-radius: 6px;
  font-weight: 600;
}

.btn-theme:hover {
  background: #c8a45d;
  color: #ffffff;
}

.interior-gallery {
  flex: 1;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  width: 220px;
  height: 420px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomMove 8s ease-in-out infinite;
}

.gallery-item:nth-child(2) img {
  animation-delay: 2s;
}

.gallery-item:nth-child(3) img {
  animation-delay: 4s;
}

@keyframes zoomMove {

  0% {
    transform: scale(1) translateX(0);
  }

  50% {
    transform: scale(1.12) translateX(-15px);
  }

  100% {
    transform: scale(1) translateX(0);
  }

}

@media(max-width:991px) {

  .interior-section {
    flex-direction: column;
    text-align: center;
  }

  .interior-content h2 {
    font-size: 42px;
  }

}

@media(max-width:768px) {

  .interior-section {
    padding: 60px 15px;
    gap: 40px;
  }

  .interior-content {
    max-width: 100%;
  }

  .interior-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .gallery-item {
    width: 100%;
    height: auto;
    min-height: unset;
    overflow: hidden;
    border-radius: 10px;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    object-position: center top;
    animation: none;
  }

  .interior-content h2 {
    font-size: 32px;
  }

}

@media(max-width:576px) {

  .interior-section {
    padding: 50px 10px;
  }

  .interior-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .gallery-item {
    height: auto;
    border-radius: 8px;
  }

  .gallery-item img {
    max-height: 160px;
  }

}

@media(max-width:400px) {

  .interior-gallery {
    gap: 5px;
  }

  .gallery-item img {
    max-height: 140px;
  }

}

/* scroll start */

.product-showcase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0px 6%;
  background: url('../img/dummy/background.png');
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.showcase-content {
  width: 40%;
}

.showcase-tag {
  display: inline-block;
  color: #13213c;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.showcase-content h2 {
  font-size: 58px;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.showcase-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #1b2333;
  margin-bottom: 30px;
}

.showcase-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #c8a45d;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: .4s;
}

.showcase-btn:hover {
  background: #b38e49;
}

.showcase-slider {
  width: 60%;
  height: 650px;
  position: relative;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-item {
  position: absolute;
  top: 50%;
  transition: all .8s ease;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, .15));
  transition: .8s;
}

/* FAR LEFT */

.far-left {
  width: 120px;
  left: -20px;
  opacity: .15;
  z-index: 1;
  transform: translateY(-50%) scale(.5);
}

/* LEFT */

.left {
  width: 220px;
  left: 12%;
  opacity: .5;
  z-index: 2;
  transform: translateY(-50%) scale(.8);
}

/* CENTER */

.center {
  width: 380px;
  left: 50%;
  opacity: 1;
  z-index: 10;
  transform: translate(-50%, -50%) scale(1.15);
}

.center img {
  animation: floatImage 3s ease-in-out infinite;
}

/* RIGHT */

.right {
  width: 220px;
  right: 12%;
  opacity: .5;
  z-index: 2;
  transform: translateY(-50%) scale(.8);
}

/* FAR RIGHT */

.far-right {
  width: 120px;
  right: -20px;
  opacity: .15;
  z-index: 1;
  transform: translateY(-50%) scale(.5);
}

@keyframes floatImage {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }

}

/* TABLET */

@media(max-width:991px) {

  .product-showcase {
    flex-direction: column;
    text-align: center;
  }

  .showcase-content {
    width: 100%;
  }

  .showcase-slider {
    width: 100%;
  }

  .showcase-content h2 {
    font-size: 42px;
  }

}

/* MOBILE */

@media(max-width:768px) {

  .product-showcase {
    padding: 70px 20px;
  }

  .showcase-slider {
    height: 380px;
  }

  .showcase-content h2 {
    font-size: 32px;
  }

  .showcase-content p {
    font-size: 15px;
  }

  .center {
    width: 180px;
  }

  .left {
    width: 110px;
    left: 0;
  }

  .right {
    width: 110px;
    right: 0;
  }

  .far-left,
  .far-right {
    display: none;
  }

}

/* MOBILE */

@media (max-width: 768px) {

  .product-showcase {
    flex-direction: column;
    padding: 40px 15px;
    gap: 30px;
    text-align: center;
  }

  .showcase-content {
    width: 100%;
    order: 1;
  }

  .showcase-slider {
    width: 100%;
    height: 300px;
    order: 2;
  }

  .showcase-content h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .showcase-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .showcase-btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  /* Center Product */

  .center {
    width: 170px;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
  }

  /* Side Products */

  .left {
    width: 90px;
    left: 5%;
    opacity: .35;
    transform: translateY(-50%) scale(.75);
  }

  .right {
    width: 90px;
    right: 5%;
    opacity: .35;
    transform: translateY(-50%) scale(.75);
  }

  /* Hide Extra Images */

  .far-left,
  .far-right {
    display: none;
  }
}

/* Extra Small Mobile */

@media (max-width: 480px) {

  .product-showcase {
    padding: 30px 12px;
  }

  .showcase-slider {
    height: 250px;
  }

  .showcase-content h2 {
    font-size: 24px;
  }

  .showcase-content p {
    font-size: 13px;
  }

  .center {
    width: 140px;
  }

  .left,
  .right {
    width: 70px;
  }

  .showcase-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* scroll end */


.product-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 20px;
  padding: 80px 5%;
  background-color: #fff;
}

.featured-product {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 550px;
  display: block;
}

.featured-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.featured-product:hover img {
  transform: scale(1.08);
}

.product-info {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
}

.product-info h3 {
  font-size: 36px;
}

.small-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.small-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  min-height: 260px;
  display: block;
}

.small-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.small-card:hover img {
  transform: scale(1.08);
}

.small-card span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-weight: 600;
}

@media(max-width:768px) {

  .product-grid {
    grid-template-columns: 1fr;
    padding: 50px 15px;
    gap: 15px;
  }

  .featured-product {
    min-height: unset;
    height: auto;
  }

  .featured-product img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .small-products {
    grid-template-columns: 1fr 1fr;
  }

  .small-card {
    min-height: unset;
    height: auto;
  }

  .small-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .product-info h3 {
    font-size: 24px;
  }

}


.products-section {
  padding: 80px 5%;

}

@media(max-width:768px) {

  .products-section {
    padding: 50px 15px;
  }

}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  transition: .4s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 320px;
  object-fit: contain !important;
  display: block;
  transition: .5s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-content {
  padding: 18px;
  text-align: center;
}

.product-content h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 15px;
}

.whatsapp-btn {
  display: block;
  padding: 12px;
  background: #13213c;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
  text-align: center;
}

.whatsapp-btn:hover {
  background: #25D366;
}

@media(max-width:991px) {

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-image img {
    height: 280px;
  }

}

@media(max-width:576px) {

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-image img {
    height: 180px;
  }

  .product-content {
    padding: 12px;
  }

  .product-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .whatsapp-btn {
    padding: 10px;
    font-size: 12px;
  }

}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 15px;
}

.heading-tag {
  display: inline-block;
  background: #f5f5f5;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin: 0 0 15px;
  line-height: 1.2;
  position: relative;
}

.section-heading h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #25D366;
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

.section-heading p {
  max-width: 650px;
  margin: 20px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

/* Tablet */
@media (max-width:768px) {

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 15px;
  }

}

/* Mobile */
@media (max-width:480px) {

  .heading-tag {
    font-size: 12px;
    padding: 6px 16px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

}

/* Why Choose Us */

.why-choose-us {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;

  background:
    linear-gradient(rgba(0, 0, 0, .75),
      rgba(0, 0, 0, .75)),
    url("../img/banner/mall\ theme\ banner.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.why-choose-us .container {
  position: relative;
  z-index: 2;
}

/* Heading */

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title span {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-title p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* Grid */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */

.why-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;

  padding: 35px 30px;
  text-align: center;

  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Icon */

.icon-box {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #111;
  font-size: 28px;
}

/* Content */

.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
}

.why-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 15px;
}

/* Scroll Animation */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */

@media (max-width: 991px) {

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 38px;
  }

}

/* Mobile */

@media (max-width: 767px) {

  .why-choose-us {
    padding: 70px 15px;
    background-attachment: fixed;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 15px;
  }

  .why-card {
    padding: 30px 20px;
  }

  .why-card h3 {
    font-size: 20px;
  }

}


/* testimonial  */

/* TESTIMONIAL SECTION */

.testimonial-section {
  padding-top: 35px;
  padding-bottom: 35px;
  background: #f8f8f8;
  overflow: hidden;
  width: 100%;
  position: relative;
  isolation: isolate;
}

.testimonial-heading {
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding: 0 20px;
  margin-bottom: 60px;
}

.testimonial-tag {
  display: inline-block;
  padding: 8px 20px;
  background: #111;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-heading h2 {
  font-size: 52px;
  margin: 20px 0;
  color: #111;
  line-height: 1.2;
}

.testimonial-heading p {
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}

/* SLIDER */

.testimonial-slider {
  overflow: hidden;
  overflow-x: clip;
  position: relative;
  width: 100%;
  max-width: 100%;
  contain: inline-size;
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 30px;
  will-change: transform;
  animation: testimonialMove 25s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* UNIQUE CARD */

.testimonial-card {
  width: 360px;
  max-width: 90vw;

  position: relative;

  padding: 35px 30px;

  background: rgba(255, 255, 255, 0.938);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, .4);

  border-radius:
    80px 25px 80px 25px;

  overflow: hidden;

  flex-shrink: 0;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, .08);

  transition: .5s ease;
}

.testimonial-card:hover {
  transform:
    translateY(-15px) rotate(-1deg);

  box-shadow:
    0 30px 60px rgba(0, 0, 0, .15);
}

.testimonial-card::before {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  top: -40px;
  right: -40px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      rgba(255, 215, 0, .4),
      rgba(255, 255, 255, 0));
}

.testimonial-card::after {
  content: "";

  position: absolute;

  width: 90px;
  height: 90px;

  bottom: -25px;
  left: -25px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      rgba(0, 0, 0, .05),
      rgba(255, 255, 255, 0));
}


.quote-icon {
  width: 70px;
  height: 70px;

  border-radius: 22px;

  background:
    linear-gradient(135deg,
      #111,
      #333);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  margin-bottom: 25px;
}


.testimonial-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.client {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-top: 25px;
}

.client img {
  width: 65px;
  height: 65px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid #fff;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .12);
}

.client h4 {
  font-size: 18px;
  color: #111;
}

.client span {
  color: #777;
  font-size: 14px;
}

/* AUTO SCROLL */

@keyframes testimonialMove {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

/* SCROLL ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: .8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */

@media(max-width:991px) {

  .testimonial-heading h2 {
    font-size: 40px;
  }

}

/* MOBILE */

@media(max-width:768px) {

  .testimonial-section {
    padding-top: 25px;
  }

  .testimonial-heading {
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .testimonial-heading h2 {
    font-size: 30px;
  }

  .testimonial-card {

    width: 85vw;
    max-width: 310px;

    padding: 25px;

    border-radius:
      60px 20px 60px 20px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .client img {
    width: 50px;
    height: 50px;
  }

  .client h4 {
    font-size: 15px;
  }

  .client span {
    font-size: 13px;
  }

}

.testimonial-card {
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }

}

.contact-section {
  padding: 90px 20px;
  background: #13213c;
  overflow: hidden;
  margin: 0;
  width: 100%;
}

.contact-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(240px, 300px) minmax(280px, 1fr);
  align-items: center;
  gap: 20px;
  position: relative;
}

.contact-info {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  z-index: 2;
}

.info-card {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.info-card:last-child {
  margin-bottom: 0;
}

.info-card i {
  font-size: 24px;
  color: #4f6df5;
  margin-top: 5px;
}

.info-card h4 {
  font-size: 24px;
  color: #222;
  margin-bottom: 5px;
}

.info-card p {
  color: #666;
  line-height: 1.6;
}

.contact-image {
  height: 520px;
  overflow: hidden;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-form-box {
  background: #f3f3f3;
  padding: 50px;
  border-radius: 30px;
}

.contact-form-box h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #222;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  background: #dfe3ea;
  padding: 18px;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
}

.contact-form-box button {
  width: 100%;
  border: none;
  background: #25D366;
  color: #fff;
  padding: 18px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-form-box button:hover {
  background: #1da851;
  transform: translateY(-3px);
}

#successToast {
  position: fixed;
  right: 20px;
  top: 20px;
  background: #25d366;
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

#successToast.show {
  opacity: 1;
  visibility: visible;
}

@media(max-width:991px) {

  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .contact-info {
    order: 1;
    padding: 22px 16px;
    border-radius: 20px;
  }

  .contact-image {
    order: 2;
    height: auto;
    min-height: 260px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
  }

  .contact-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    min-height: 260px;
    object-fit: contain;
    object-position: center top;
  }

  .contact-form-box {
    order: 3;
    grid-column: 1 / -1;
  }

}

@media(max-width:768px) {

  .contact-section {
    padding: 70px 15px;
  }

  .contact-wrapper {
    gap: 10px;
  }

  .contact-info {
    padding: 16px 12px;
    border-radius: 16px;
  }

  .info-card {
    gap: 8px;
    margin-bottom: 16px;
  }

  .info-card i {
    font-size: 18px;
    margin-top: 2px;
  }

  .info-card h4 {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .info-card p {
    font-size: 11px;
    line-height: 1.4;
  }

  .contact-image {
    min-height: 220px;
    border-radius: 16px;
  }

  .contact-image img {
    min-height: 220px;
  }

}

@media(max-width:576px) {

  .contact-section {
    padding: 70px 10px;
  }

  .contact-wrapper {
    gap: 8px;
  }

  .contact-info {
    padding: 14px 10px;
  }

  .info-card {
    margin-bottom: 12px;
  }

  .info-card h4 {
    font-size: 13px;
  }

  .info-card p {
    font-size: 10px;
  }

  .info-card i {
    font-size: 16px;
  }

  .contact-image {
    min-height: 200px;
  }

  .contact-image img {
    min-height: 200px;
  }

  .contact-form-box {
    padding: 25px;
  }

  .contact-form-box h2 {
    font-size: 30px;
  }

  .form-group input,
  .form-group textarea {
    padding: 15px;
    font-size: 14px;
  }

}

/* footer */
/* FOOTER */

.footer {
  position: relative;
  background: #dfe4ea;
  overflow: hidden;
  margin-top: 0;
  width: 100%;
  color: #1a1a1a;
}

/* TOP GLOW LINE */





.footer-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 80px 10px 50px;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo {
  max-width: 160px;
  /* margin-bottom: 20px; */
  transition: .4s;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-about p {
  color: #1a1a1a;
  line-height: 1.9;
  margin-bottom: 25px;
  max-width: 400px;
}

.footer-col h3 {
  color: #13213c;
  font-size: 22px;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #13213c;
  display: block;
  margin-top: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
  color: #1a1a1a;
}

.footer-col ul li i {
  color: #13213c;
  margin-right: 10px;
}

.footer-col ul li a {
  color: #1a1a1a;
  text-decoration: none;
  transition: .3s;
}

.footer-col ul li a:hover {
  color: #13213c;
  padding-left: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #13213c;

  color: #fff;

  transition: .4s;
}

.footer-social a:hover {
  transform: translateY(-5px);
  background: #2a4a8a;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 25px 20px;
  text-align: center;
  background-color: #cbd5e1;
}

.footer-bottom p {
  color: #1a1a1a;
}

/* Scroll Animation */

.footer-col,
.footer-about {
  animation: footerFade 1s ease forwards;
}

@keyframes footerFade {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* Tablet */

@media(max-width:991px) {

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
  }

}

/* Mobile */

@media(max-width:768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
    padding: 60px 15px 40px;
  }

  .footer-logo {
    /* margin: auto auto 20px; */
  }

  .footer-about p {
    margin: auto auto 25px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col h3::after {
    margin: 10px auto 0;
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }

}

/* about page  */
.about-showcase {
  padding: 120px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.322),
      rgba(0, 0, 0, 0.322)),
    url("../img/banner/7.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-card {

  max-width: 1200px;

  margin: 0 auto 80px;

  background: #f8f6f2;

  display: grid;
  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  overflow: hidden;

  border-radius: 30px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, .18);
}

.about-card.reverse {

  grid-template-columns: 1fr 1.2fr;
}

.about-card.reverse .about-content {
  order: 2;
}

.about-card.reverse .about-image {
  order: 1;
}

.about-content {

  padding: 70px;
}

.about-content span {

  display: inline-block;

  margin-bottom: 15px;

  color: #777;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-size: 13px;
}

.about-content h2 {

  font-size: 52px;

  line-height: 1.1;

  color: #222;

  margin-bottom: 25px;
}

.about-content p {

  color: #666;

  line-height: 1.9;

  margin-bottom: 30px;
}

.about-content a {

  display: inline-block;

  padding: 14px 32px;

  border: 1px solid #222;

  color: #222;

  text-decoration: none;

  transition: .4s;
}

.about-content a:hover {

  background: #222;
  color: #fff;
}

.about-image {

  height: 100%;
}

.about-image img {

  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
}

/* Animation */

.reveal {

  opacity: 0;
  transform: translateY(80px);
  transition: 1s ease;
}

.reveal.active {

  opacity: 1;
  transform: translateY(0);
}

/* Tablet */

@media(max-width:991px) {

  .about-content {
    padding: 40px;
  }

  .about-content h2 {
    font-size: 38px;
  }

}

@media(max-width:768px) {

  .about-showcase {

    padding: 70px 15px;

    background-attachment: scroll;
  }

  .about-card,
  .about-card.reverse {

    grid-template-columns: 1fr;
  }

  .about-card.reverse .about-content,
  .about-card.reverse .about-image {

    order: unset;
  }

  .about-image {

    height: 280px;
  }

  .about-content {

    padding: 30px 25px;
    text-align: center;
  }

  .about-content h2 {

    font-size: 30px;
  }

  .about-content p {

    font-size: 15px;
  }

}

/* products page */
.products-page {

  position: relative;

  padding: 120px 0;

  width: 100%;
  max-width: 100%;

  background:
    linear-gradient(rgba(0, 0, 0, .75),
      rgba(0, 0, 0, .75)),
    url("../img/banner/9.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.products-page .container {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

@media (max-width: 768px) {
  .products-page .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.products-header {

  text-align: center;

  max-width: 900px;

  margin: auto;
}

.products-header h2 {

  font-size: 60px;

  font-weight: 800;

  color: #fff;

  margin-bottom: 15px;
}

.products-header p {

  color: #ddd;

  font-size: 18px;

  line-height: 1.8;
}

/* Filter */

.product-filters {

  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;

  margin: 50px 0;
}

.filter-btn {

  border: none;

  background: transparent;

  color: #fff;

  cursor: pointer;

  padding: 12px 20px;

  font-size: 15px;

  text-transform: uppercase;

  letter-spacing: 1px;

  transition: .3s;
}

.filter-btn.active {

  background: #fff;

  color: #111;

  border-radius: 30px;
}

/* Product Grid */

.products-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 25px;
}

.product-card {

  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  transition: .4s;

  animation: fadeUp .8s ease;

}

.product-card:hover {

  transform: translateY(-10px);
}

.product-card img {

  width: 100%;

  height: 280px;

  object-fit: contain;

  display: block;

  background: #fff;
}

.product-card h3 {

  text-align: center;

  padding: 20px;

  color: #222;
}

.product-card a {

  display: block;

  text-align: center;

  margin: 0 20px 20px;

  background: #13213c;

  color: #fff;

  padding: 12px;

  border-radius: 8px;

  text-decoration: none;

  font-weight: 600;

  transition: .3s;
}

.product-card a:hover {
  background: #25D366;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

.mobile-filter {
  display: none;
}


/* Tablet */
@media (min-width: 769px) and (max-width: 991px) {
  .mySwiper {
    /* background-color: red; */
    width: 100% !important;
    height: 710px !important;
    /* margin: 0px !important; */
  }

  .product-showcase {
    gap: 0;
  }
}

/* Mobile */
@media (min-width: 481px) and (max-width: 768px) {
  .mySwiper {
    width: 100% !important;
    height: auto !important;
    min-height: 450px;
    padding: 40px 15px 30px;
  }

  .product-showcase {
    gap: 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .mySwiper {
    width: 100% !important;
    height: auto !important;
    min-height: 400px;
    padding: 50px 10px 30px;
    overflow: hidden;
  }

  .product-showcase {
    gap: 0;
    padding-bottom: 30px;
  }
}


@media(max-width:768px) {

  .products-page {
    padding: 80px 0 120px;
    background-attachment: scroll;
    width: 100%;
    max-width: 100%;
  }

  .products-header {
    padding: 0 12px;
  }

  .products-header h2 {

    font-size: 34px;
  }

  .products-header p {

    font-size: 15px;
  }

  .product-filters {

    display: none;
  }

  .products-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 6px;
    width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card img {

    width: 100%;
    height: auto;
    min-height: 150px;
    max-height: 200px;
    object-fit: contain;
    object-position: center;
  }

  .product-card h3 {

    font-size: 13px;
    padding: 10px 8px;
  }

  .product-card a {

    font-size: 11px;
    margin: 0 8px 10px;
    padding: 10px 8px;
  }

  /* Fixed Bottom Filter */

  .mobile-filter {

    display: flex;

    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;

    overflow-x: auto;

    gap: 10px;

    padding: 12px;

    background: #fff;

    box-shadow:
      0 -5px 20px rgba(0, 0, 0, .1);

    z-index: 9999;
  }

  .mobile-filter .filter-btn {

    white-space: nowrap;

    background: #f2f2f2;

    color: #111;

    border-radius: 30px;
  }

  .mobile-filter .filter-btn.active {

    background: #111;

    color: #fff;
  }

}

.carousel-container {
  width: 100%;
  height: 650px;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-card {
  position: absolute;
  top: 50%;
  transition: all 1s cubic-bezier(.22, .61, .36, 1);
}

.carousel-card img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .25));
}

/* LEFT */

.left {
  width: 240px;
  left: 20%;
  opacity: .55;
  z-index: 2;
  transform: translateY(-50%) scale(.8);
}

/* CENTER */

.center {
  width: 380px;
  left: 50%;
  opacity: 1;
  z-index: 10;
  transform: translate(-50%, -50%) scale(1);
}

/* RIGHT */

.right {
  width: 240px;
  right: 20%;
  opacity: .55;
  z-index: 2;
  transform: translateY(-50%) scale(.8);
}

.center img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}



.mySwiper {
  width: 60%;
  height: 650px;
  max-width: 100%;
  overflow: hidden;
  padding-top: 20px;
  box-sizing: border-box;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
  object-position: center top;
  transition: .5s;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .3));
}

.swiper-slide-active img {
  transform: scale(1.8);
}

@media (max-width: 768px) {
  .mySwiper {
    width: 100% !important;
    height: auto !important;
    min-height: 420px;
    padding: 45px 15px 25px;
  }

  .swiper-slide {
    align-items: flex-start;
  }

  .swiper-slide img {
    max-width: 280px;
    max-height: 340px;
  }

  .swiper-slide-active img {
    transform: none;
  }
}

@media (max-width: 480px) {
  .mySwiper {
    min-height: 380px;
    padding: 40px 10px 20px;
  }

  .swiper-slide img {
    max-width: 240px;
    max-height: 300px;
  }

  .swiper-slide-active img {
    transform: none;
  }
}