* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP BAR */
.top-bar {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

.contact-info span {
  margin-left: 25px;
  font-size: 14px;
  color: #333;
}

.contact-info i {
  margin-right: 5px;
  color: #000;
}

/* HEADER */
header {
  background: #fff;
  padding: 15px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 5px;
}

nav ul li a.active,
nav ul li a:hover {
  color: #e91e63;
  border-bottom: 2px solid #e91e63;
}

/* SOCIAL ICONS */
.social-icons a {
  border: 1px solid #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  color: #000;
  text-decoration: none;
}

.social-icons a:hover {
  background: #000;
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
}

.menu-toggle {
  display: none;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.slide.active {
  display: block;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 100;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* BOOK APPOINTMENT BAR */

.book-bar {
  width: 100%;
  background: #cf8858;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 28px 0;
  margin-top: 2px;
}

.book-bar a {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  color: #fff;
  text-decoration: none;

  font-size: 30px;
  font-weight: 600;
  letter-spacing: .5px;

  line-height: 1;

  background: none;
  border: none;
  padding: 0;
}

.book-bar a i {
  font-size: 34px;
}

.book-bar a:hover {
  color: #fff;
}

/* ABOUT SECTION */

.about {
  padding: 90px 0;
  background: #fff;
}

.about-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 40% 60%;
  gap: 65px;

  align-items: start;
}

/* IMAGE */

.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}

/* CONTENT */

.about-content {
  width: 100%;
  padding-top: 20px;
}

.about-content h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #222;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 22px;
}

.about-content span {
  color: #d67b43;
  font-weight: 700;
}

/* HIGHLIGHT BOX */

.highlight-box {
  margin-top: 30px;
  background: #fff;
  padding: 28px 35px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.highlight-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 35px;
}

.highlight-grid div {
  font-size: 18px;
  color: #555;
  font-weight: 500;
}

/* =========================
   TRENDING SERVICES
========================= */

.trending-section {
  padding: 90px 0;
  background: #fff;
}

.trendingSwiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 60px;
}

.trendingSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.trending-card {
  width: 100%;
}

.trending-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.trending-card h4 {
  margin-top: 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

/* Pagination */

.trending-pagination {
  position: relative !important;
  margin-top: 35px;
  text-align: center;
}

.trending-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 6px !important;
  transition: .3s;
}

.trending-pagination .swiper-pagination-bullet-active {
  background: #f4a024;
}

/* =========================
   MOST LOVED PRODUCTS
========================= */

.products-section {
  padding: 90px 0;
  background: #fff;
}

.productSwiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 60px;
}

.productSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.product-card {
  width: 100%;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  transition: .3s;
}

.product-card img:hover {
  transform: scale(1.03);
}

.product-card p {
  margin-top: 0;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  line-height: 1.5;
}

/* Pagination */

.product-pagination {
  position: relative !important;
  margin-top: 35px;
  text-align: center;
}

.product-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 6px !important;
  transition: .3s;
}

.product-pagination .swiper-pagination-bullet-active {
  background: #f4a024;
}

/* SECTION TITLE */

.section-title {
  text-align: center;

  font-size: 58px;
  font-weight: 300;

  color: #111;

  text-transform: uppercase;
  letter-spacing: 1px;

  margin-bottom: 60px;

  position: relative;
}

.section-title::after {
  content: "";

  width: 285px;
  height: 1px;

  background: #222;

  position: absolute;
  left: 50%;
  bottom: -22px;

  transform: translateX(-50%);
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  z-index: 999;
}

.whatsapp-btn i {
  font-size: 20px;
}

/* =========================================
   OUR WORK
========================================= */

.videos-section {
  width: 100%;
  padding: 70px 0 90px;
  background: #fff;
}

.videos-section .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ================= HEADING ================= */

.work-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 35px;
}

.work-heading h2 {
  margin: 0;
  padding: 0;

  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;

  color: #111;
  text-align: center;
  letter-spacing: 1px;
}

.work-heading span {
  display: block;

  width: 255px;
  height: 1px;

  margin: 20px auto 0;

  background: #333;
}


/* ================= TABS ================= */

.work-tabs {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 35px;

  margin-bottom: 45px;
}

.work-tab {
  min-width: 145px;

  padding: 17px 30px;
  margin: 0;

  border: none;
  outline: none;

  background: transparent;

  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;

  color: #111;

  text-align: center;

  cursor: pointer;

  transition: 0.3s ease;
}

.work-tab.active {
  background: #fff;
  color: #555;

  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.work-tab:hover {
  color: #555;
}


/* ================= TAB CONTENT ================= */

.work-content {
  display: none;
  width: 100%;
}

.work-content.active {
  display: block;
}


/* =========================================
   WORK + AMBIENCE IMAGES
   4 IMAGES
========================================= */

.work-images-grid {
  width: 84%;
  margin: 0 auto 60px;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 15px;
  align-items: start;
}

.work-image-item {
  width: 100%;
  height: auto;

  overflow: visible;

  background: transparent;

  border: none;
}

.work-image-item img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: initial;
  object-position: initial;

  transition: none;
}

.work-image-item:hover img {
  transform: none;
}


/* =========================================
   BTS - 7 IMAGES
   4 TOP + 3 CENTER BOTTOM
========================================= */

#bts .work-images-grid {
  width: 84%;
  margin: 0 auto 60px;

  display: grid;

  grid-template-columns: repeat(8, minmax(0, 1fr));

  gap: 15px;

  align-items: start;
}


/* BTS TOP 4 */

#bts .work-image-item:nth-child(1),
#bts .work-image-item:nth-child(2),
#bts .work-image-item:nth-child(3),
#bts .work-image-item:nth-child(4) {
  grid-column: span 2;
}


/* BTS BOTTOM 3 CENTER */

#bts .work-image-item:nth-child(5) {
  grid-column: 2 / span 2;
}

#bts .work-image-item:nth-child(6) {
  grid-column: 4 / span 2;
}

#bts .work-image-item:nth-child(7) {
  grid-column: 6 / span 2;
}


/* ================= VIDEOS ================= */

.videos-grid {
  width: 84%;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.video-item {
  width: 100%;

  overflow: hidden;

  border-radius: 10px;

  cursor: pointer;
}

.video-item video {
  width: 100%;
  height: 500px;

  object-fit: cover;

  display: block;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .videos-section .container {
    padding: 0 25px;
  }


  /* NORMAL IMAGES */

  .work-images-grid {
    width: 90%;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px;
  }


  /* BTS */

  #bts .work-images-grid {
    width: 90%;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px;
  }

  #bts .work-image-item:nth-child(n) {
    grid-column: auto;
  }


  /* ALL IMAGES */

  .work-image-item {
    width: 100%;
    height: auto;
  }

  .work-image-item img {
    width: 100%;
    height: auto;

    display: block;
  }


  /* VIDEOS */

  .videos-grid {
    width: 90%;

    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .videos-section {
    padding: 50px 0 60px;
  }

  .videos-section .container {
    padding: 0 15px;
  }


  /* HEADING */

  .work-heading {
    margin-bottom: 30px;
  }

  .work-heading h2 {
    font-size: 36px;
  }

  .work-heading span {
    width: 190px;
  }


  /* TABS */

  .work-tabs {
    gap: 5px;

    margin-bottom: 35px;
  }

  .work-tab {
    min-width: auto;

    padding: 12px 18px;

    font-size: 14px;
  }


  /* NORMAL IMAGES */

  .work-images-grid {
    width: 100%;

    margin-bottom: 40px;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;
  }


  /* BTS IMAGES */

  #bts .work-images-grid {
    width: 100%;

    margin-bottom: 40px;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;
  }

  #bts .work-image-item:nth-child(n) {
    grid-column: auto;
  }


  /* ALL IMAGES */

  .work-image-item {
    width: 100%;
    height: auto;
  }

  .work-image-item img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: initial;
  }


  /* VIDEOS */

  .videos-grid {
    width: 100%;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 8px;
  }

  .video-item video {
    height: 350px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  /* HEADING */

  .work-heading h2 {
    font-size: 32px;
  }


  /* TABS */

  .work-tabs {
    gap: 2px;
  }

  .work-tab {
    padding: 10px 12px;

    font-size: 13px;
  }


  /* ALL IMAGE GRIDS */

  .work-images-grid,
  #bts .work-images-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  /* BTS RESET */

  #bts .work-image-item:nth-child(n) {
    grid-column: auto;
  }


  /* IMAGES */

  .work-image-item {
    width: 100%;
    height: auto;
  }

  .work-image-item img {
    width: 100%;
    height: auto;

    display: block;
  }


  /* VIDEOS */

  .videos-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .video-item video {
    height: 480px;
  }

}

/*LEADING THE WAY*/

.leading-section {
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
    url("bg.avif") center center/cover no-repeat;

  padding: 120px 0;
  color: #fff;
  overflow: hidden;
  padding: 60px 0;
}

.leading-grid {
  display: grid;
  grid-template-columns: 32% 68%;
  gap: 60px;
  align-items: center;
}

/* LEFT */

.leading-text h2 {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 35px;
  letter-spacing: 1px;
  color: #fff;
}

.leading-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #e8e8e8;
  max-width: 420px;
}

/* RIGHT */

.leading-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* BOX */

.stat-box {
  padding: 45px 28px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(20, 20, 20, .55);
  transition: .35s;
}

.stat-box:hover {
  transform: translateY(-8px);
  background: rgba(0, 0, 0, .75);
}

.stat-box i {
  font-size: 52px;
  color: #d88a58;
  margin-bottom: 28px;
}

.stat-box h3 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.stat-box p {
  font-size: 17px;
  letter-spacing: 1px;
  color: #eee;
  line-height: 1.5;
}

/* ELEVATE BEAUTY SECTION */
.elevate-section {
  padding: 100px 0;
  background: #fff;
}

.elevate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.elevate-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.elevate-content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
  color: #222;
}

.elevate-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 30px;
}

.elevate-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  background: #fff;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.elevate-points div {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.elevate-points i {
  color: #d98a5a;
  margin-right: 8px;
  font-size: 12px;
}

/*TRUSTED BRANDS*/

.brands-section {
  padding: 50px 0;
  background: #fff;
}

.brands-wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
  padding: 0px 0;
}

.brands-slider {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  min-height: 140px;
  animation: brandSlider 25s linear infinite;
}

.brands-slider:hover {
  animation-play-state: paused;
}

.brand-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
}

.brand-item img {
  width: 220px;
  height: 180px;
  object-fit: contain;
  opacity: .75;
  transition: .35s;
}

.brand-item img:hover {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes brandSlider {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 45px));
  }
}

/*FOOTER*/

.footer {
  background: #1f1f1f;
  color: #d5d5d5;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.8fr 1.6fr;
  gap: 60px;
  padding-bottom: 55px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 25px;
  border-radius: 8px;
}

.footer-col h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 16px;
  line-height: 1.9;
  color: #cfcfcf;
}

.footer strong {
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #d5d5d5;
}

.footer-col ul li i {
  color: #d98a5a;
  min-width: 18px;
  margin-top: 5px;
}

.footer-col a {
  color: #d5d5d5;
  text-decoration: none;
  transition: .3s;
}

.footer-col a:hover {
  color: #d98a5a;
  padding-left: 5px;
}

/* Email ek line me */

.footer-col ul li:nth-child(2) {
  white-space: nowrap;
}

/*FOOTER BOTTOM*/

.footer-bottom {
  position: relative;

  border-top: 1px solid rgba(255, 255, 255, .08);

  padding: 22px 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 15px;
  color: #bdbdbd;
}

.footer-bottom strong {
  color: #fff;
}

/*SOCIAL ICONS*/

.social-icons {
  position: absolute;
  right: 20px;
  top: -40px;
  transform: translateY(-50%);

  display: flex;
  gap: 4px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;

  background: #1f1f1f;
  /* footer ka same color */
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;

  color: #fff;
  transition: .35s;
}

.social-icons a:hover {
  background: #d98a5a;
  border-color: #d98a5a;
}

.social-icons i {
  font-size: 18px;
}

/*  TABLET (992px) */

@media (max-width:992px) {

  .container {
    width: 92%;
  }

  .section-title {
    font-size: 48px;
  }

  /* HERO */

  .hero {
    height: 75vh;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  /* ABOUT */

  .about-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-image img {
    height: 520px;
  }

  .about-content {
    padding-top: 0;
  }

  .about-content h1 {
    font-size: 48px;
  }

  /* TRENDING */

  .trending-card {
    min-width: 280px;
  }

  .trending-card img {
    height: 340px;
  }

  /* PRODUCTS */

  .product-card {
    min-width: 260px;
  }

  .product-card img {
    height: 320px;
  }

  /* VIDEOS */

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* LEADING */

  .leading-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .leading-text {
    text-align: center;
  }

  .leading-text p {
    margin: auto;
  }

  .leading-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ELEVATE */

  .elevate-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .elevate-img img {
    height: 500px;
  }

  /* FOOTER */

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

}


/*MOBILE (768px)*/
@media (max-width:768px) {

  .top-bar {
    padding: 10px 0;
  }

  .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .logo img {
    width: 120px;
    height: auto;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .contact-info span {
    font-size: 13px;
    white-space: nowrap;
  }

  .contact-info i {
    margin-right: 5px;
  }

  .navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    height: 60px;
    padding: 0;
    margin: 0;
  }

  .menu-toggle {
    display: block;
    font-size: 36px;
    cursor: pointer;

    display: flex;
    align-items: center;
    height: 60px;
  }

  .navbar .social-icons {
    display: none;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    z-index: 999;
  }

  nav.active {
    display: block;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  nav ul li {
    list-style: none;
    border-bottom: 1px solid #eee;
  }

  nav ul li a {
    display: block;
    padding: 16px;
    text-align: center;
  }

  .hero {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;
    transition: opacity .5s ease;
  }

  .slide.active {
    opacity: 1;
  }

  .prev,
  .next {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-title::after {
    width: 120px;
  }

  .about {
    padding: 60px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-image img {
    height: 320px;
  }

  .about-content {
    padding-top: 0;
  }

  .about-content h1 {
    font-size: 34px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 15px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .trending-card {
    flex: 0 0 220px;
  }

  .trending-card img {
    height: 280px;
  }

  .product-card {
    flex: 0 0 190px;
  }

  .product-card img {
    height: 250px;
  }


  .videos-grid {
    grid-template-columns: 1fr;
  }

  .video-item video {
    height: 420px;
  }

  .leading-section {
    padding: 50px 0;
  }

  .leading-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .leading-text {
    text-align: center;
  }

  .leading-text h2 {
    font-size: 38px;
  }

  .leading-text p {
    margin: auto;
  }

  .leading-stats {
    grid-template-columns: 1fr;
  }

  .elevate-section {
    padding: 60px 0;
  }

  .elevate-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .elevate-img img {
    height: 320px;
  }

  .elevate-content h2 {
    font-size: 28px;
  }

  .elevate-points {
    grid-template-columns: 1fr;
  }

  .brands-slider {
    gap: 45px;
  }

  .brand-item {
    height: 90px;
  }

  .brand-item img {
    width: 120px;
    height: 80px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 35px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-col ul li {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom .social-icons {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 10px;
  }

  .whatsapp-btn {
    right: 12px;
    bottom: 12px;
    transform: scale(.9);
  }
}

/* SMALL MOBILE (480px)*/

@media (max-width:480px) {

  .hero-content h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .about-image img {
    height: 320px;
  }

  .about-content h1 {
    font-size: 32px;
  }

  .about-content h2 {
    font-size: 20px;
  }

  .leading-text h2 {
    font-size: 34px;
  }

  .stat-box h3 {
    font-size: 38px;
  }

  .trending-card {
    min-width: 190px;
  }

  .product-card {
    min-width: 190px;
  }

  .brand-item img {
    width: 110px;
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .footer-col p,
  .footer-col li {
    font-size: 14px;
  }

  .whatsapp-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

}

html {
  scroll-behavior: smooth;
}

@media (max-width:768px) {

  .trending-card img {
    height: 300px;
  }

  .product-card img {
    height: 220px;
  }

  .trending-card h4,
  .product-card p {
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    word-break: break-word;
  }

}