body {
  overflow-x: hidden;
  font-family: "Barlow", sans-serif;
}

html {
  scroll-behavior: smooth;
}
a{
    text-decoration:none;
}
/* ===== NAVBAR ===== */
.navbar-premium {
  background: #ffffff;
  width: 100%;
  padding: 4px 30px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.hidden-nav {
  transform: translateY(-120%);
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.show-nav {
  transform: translateY(0);
  opacity: 1;
}

.navbar-premium.show-nav {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
}

.logoBox {
  display: flex;
  align-items: center;
}

.logoBox img {
  height: 70px;
  width: 120px;
  border-radius: 3px;
}

.navbar-nav {
  gap: 35px;
}

.nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #333 !important;
  position: relative;
}

.navbar-premium {
  pointer-events: none;
}

.navbar-premium.show-nav {
  pointer-events: auto;
}

/* .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff6a00;
  transition: 0.3s;
} */

.nav-link:hover::after {
  width: 100%;
}

.btn-orange {
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.35);
  transition: 0.3s;
}

.btn-orange:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 35px rgba(255, 106, 0, 0.5);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  width: 24px;
  height: 2px;
  background: #000;
  display: block;
  margin: 5px 0;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav {
    text-align: center;
    gap: 20px;
  }

  .mobile-btn {
    margin-top: 15px;
    width: 100%;
  }
}

/* ==================footetr=================== */

.uf-footer {
  padding: 40px 30px 30px;
}

.uf-footer * {
  box-sizing: border-box;
}

.uf-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}

.uf-left {
  width: 220px;
  flex-shrink: 0;

  transform: translateX(-40px);
  opacity: 0;
  animation: uf-leftIn 0.8s ease forwards;
}

.uf-logo {
  width: 180px;
  height: auto;
  margin-bottom: 3px;
}

.uf-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.uf-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.uf-email {
  font-size: 14px;
  color: #222;
  text-decoration: none;
}

.uf-col {
  width: 300px;
  flex-shrink: 0;

  transform: translateX(40px);
  opacity: 0;
  animation: uf-rightIn 0.8s ease forwards;
}

.uf-col:nth-child(2) {
  animation-delay: 0.2s;
}

.uf-col:nth-child(3) {
  animation-delay: 0.3s;
}

.uf-title {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}

.uf-title::after {
  content: "";
  width: 106px;
  height: 2px;
  background: #ff6a00;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.uf-list {
  list-style: none;
  margin-top: 18px;
  padding: 0;
}

.uf-list li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.uf-list a {
  text-decoration: none;
  color: #333;
  display: inline-block;
  font-size: 16px;
}

.uf-list a:hover {
  color: #ff6a00;
}

.uf-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: #555;
}

.uf-bottom a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.uf-bottom a:hover {
  color: #ff6a00;
}

.uf-bottom {
  position: relative;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 16px;
  color: #555;
}

.uf-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 227px;
  height: 3px;

  background: linear-gradient(90deg,
      transparent,
      #ff6a00,
      #ff9a3c,
      #ff6a00,
      transparent);

  border-radius: 50px;

  animation: shine 2s infinite linear;
}

@keyframes shine {
  0% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.8);
  }

  100% {
    filter: brightness(1);
  }
}

.uf-footer {
  box-shadow: 0 -10px 21px rgba(255, 0, 0, 0.21);
}

@keyframes uf-leftIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes uf-rightIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .uf-wrap {
    gap: 40px;
    flex-wrap: wrap;
  }

  .uf-left {
    width: 180px;
  }

  .uf-col {
    width: 180px;
  }

  .uf-logo {
    width: 166px;
  }
}

@media (max-width: 768px) {
  .uf-wrap {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    align-items: center;
  }

  .uf-left {
    width: 100%;
    max-width: 220px;
  }

  .uf-logo {
    width: 166px;
    margin: auto;
  }

  .uf-icons {
    justify-content: center;
    gap: 10px;
  }

  .uf-icons a {
    width: 34px;
    height: 34px;
  }

  .uf-email {
    font-size: 13px;
  }

  .uf-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .uf-col {
    width: 100%;
    max-width: 250px;
  }

  .uf-logo {
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .uf-wrap {
    gap: 20px;
  }

  .uf-logo {
    width: 166px;
  }

  .uf-icons a {
    width: 30px;
    height: 30px;
  }

  .uf-email {
    font-size: 12px;
  }

  .uf-title {
    font-size: 18px;
  }

  .uf-list li {
    font-size: 16px;
  }
}

/* MOBILE (768px) */
@media(max-width:768px) {
  .uf-map {
    width: 100% !important;
    max-width: 280px !important;
    flex-shrink: auto;
    margin: 0 auto;
    
  }

  .uf-map .map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  .uf-map iframe {
    width: 100% !important;
    height: 280px !important;
    display: block;
    border: 0 !important;
  }

  .uf-map .uf-title {
    text-align: center;
  }

  .uf-map .uf-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* SMALL MOBILE (480px) */
@media(max-width:480px) {
  .uf-map {
    width: 100% !important;
    max-width: 100% !important;
  }

  .uf-map iframe {
    width: 100% !important;
    height: 240px !important;
  }

}

/* Location Section */
.location-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
  font-family: "Barlow", sans-serif;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-size: 20px;
  margin-top: 2px;
}

.location-item p {
  margin: 0;
  font-size: 16px;
  /* font-weight: 700; */
  line-height: 1.5;
  color: #333;

}

/* Tablet */
@media (max-width: 991px) {
  .location-list {
    gap: 22px;
  }

  .location-item p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .location-list {
    gap: 18px;
    margin-top: 15px;
  }

  .location-item {
    gap: 10px;
  }

  .location-icon {
    width: 20px;
    height: 20px;
    font-size: 13px;
  }

  .location-item p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* =====================
    2)  index.php
=======================*/

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================= IMAGE ================= */
.hero-img {
  position: absolute;
  inset: 0;
  margin: auto;

  width: min(90%, 1400px);
  height: 100%;

  object-fit: cover;

  opacity: 0;
  transition: opacity 1s ease;
}

/* ================= HEADING ================= */
.hero-heading {
  position: absolute;
  top: clamp(180px, 25%, 250px);
  left: clamp(25px, 7%, 80px);

  width: min(500px, 90%);
  font-size: clamp(22px, 3vw, 40px);

  padding: 14px 20px;
  font-weight: 600;
  color: #fff;

  background: #0000002b;

  z-index: 2;

  opacity: 0;
  transform: translateY(40px);
  transition: 1.2s ease;
}

.hero-bottom {
  position: absolute;
  bottom: clamp(30px, 8%, 100px);
  left: 50%;

  transform: translateX(-50%) translateY(40px);

  width: 100%;
  max-width: 800px;

  text-align: center;
  z-index: 2;

  opacity: 0;
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.hero-sub {
  position: absolute;
  bottom: 170px;
  left: 60px;

  background: linear-gradient(90deg, #ffffff 0%, #999999 100%);
  padding: 12px 18px;

  font-size: 16px;
  line-height: 1.5;
  color: #000;

  z-index: 3;
  max-width: 520px;
}

.hero-sub {
  position: absolute;
  bottom: 170px;
  left: 75px;

  background: linear-gradient(90deg, #ffffff 0%, #999999 100%);
  padding: 12px 18px;

  font-size: 16px;
  line-height: 1.5;
  color: #000;

  z-index: 3;
  max-width: 1000px;

  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease;
}

.hero.show-hero .hero-sub {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 15px);
  flex-wrap: wrap;

  max-width: 380px;
  margin: auto;
}

.btn-primary,
.btn-outline {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: clamp(13px, 1.2vw, 14px);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-decoration: none;
  transition: 0.3s ease;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.cinematic {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  z-index: 5;
}

.zoom-box {
  width: clamp(160px, 20vw, 220px);
  height: clamp(100px, 15vw, 140px);
  overflow: hidden;
  transition: 2s ease;
}

.zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinematic-text {
  font-size: clamp(20px, 5vw, 40px);
  letter-spacing: 4px;
  margin-top: 20px;

  opacity: 0;
  transition: 1s;
}

.hero.show-text .cinematic-text {
  opacity: 1;
}

.hero.zoom .zoom-box {
  width: 100%;
  height: 100%;
}

.hero.show-hero .cinematic {
  opacity: 0;
  pointer-events: none;
}

.hero.show-hero .hero-img {
  opacity: 1;
}

.hero.show-hero .hero-heading {
  opacity: 1;
  transform: translateY(0);
}

.hero.show-hero .hero-bottom {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
  .hero-heading {
    top: 20%;
    /* left: 6%; */
    width: 80%;
  }

  .hero-bottom {
    bottom: 60px;
  }

  .hero-sub {
    margin-left: 0;
    text-align: center;
    line-height: 1.4;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero-sub {
    position: absolute;

    bottom: 140px;

    transform: translateX(-50%);

    width: calc(100% - 40px);

    max-width: 70%;

    padding: 12px 16px;

    font-size: 13px;
    line-height: 1.5;

    text-align: center;

    margin: 0;

    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero-sub {
    position: relative;

    left: auto;
    bottom: auto;

    transform: none;

    width: 100%;

    margin: 20px auto 14px;

    padding: 12px 14px;

    font-size: 12px;
    line-height: 1.6;

    text-align: center;
  }

  .hero-bottom {
    bottom: 20px;
    padding: 0 14px;
  }

  .hero-buttons {
    gap: 12px;
  }
}

/* ================= SECTION ================= */
.legacy-section {
  padding: 30px 20px;
  display: flex;
  justify-content: flex-end;
}

.legacy-box {
  position: relative;

  background: #ff6a1a;
  padding: clamp(2px, 1vw, 10px);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  color: #fff;

  opacity: 0;
  transform: scale(0.9);
  filter: blur(10px);
  overflow: hidden;

  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.legacy-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateX(0%);
  z-index: 2;

  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.legacy-box.show {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.legacy-box.show::before {
  transform: translateX(100%);
}

.legacy-box p {
  color: black;
}

.legacy-title,
.legacy-sub {
  position: relative;
  z-index: 3;
}

.legacy-title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 10px;

  transform: translateY(30px);
  opacity: 0;
  transition: 0.8s ease;
}

.legacy-sub {
  font-size: clamp(13px, 1.5vw, 16px);
  color: #000;

  transform: translateY(20px);
  opacity: 0;
  transition: 0.8s ease;
}

.legacy-box.show .legacy-title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.legacy-box.show .legacy-sub {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .legacy-section {
    justify-content: center;
  }

  .legacy-box {
    max-width: 90%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .legacy-section {
    padding: 60px 15px;
    justify-content: center;
  }

  .legacy-box {
    max-width: 100%;
    padding: 20px;
    border-radius: 12px;
  }

  .legacy-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .legacy-sub {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .legacy-box {
    padding: 16px;
  }

  .legacy-title {
    font-size: 18px;
  }

  .legacy-sub {
    font-size: 12px;
  }
}

/* ======================4rth section=================== */
.timeline-section {
  padding: 80px 20px;
}

.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.timeline-item {
  position: relative;
  width: 18%;
  text-align: center;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;

  top: 100px;

  right: -50%;

  width: 100%;
  height: 2px;

  background: #f2b233;
  z-index: 1;
}

.dot {
  width: 12px;
  height: 12px;
  background: #f2b233;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(242, 178, 51, 0.2);
}

.card {
  background: #fff;
  padding: 20px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  z-index: 3;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #111;
}

.card p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card small {
  font-size: 16px;
  color: #666;
}

@media (max-width: 992px) {
  .timeline-wrapper {
    flex-wrap: wrap;
    gap: 40px;
  }

  .timeline-wrapper::before {
    display: none;
  }

  .timeline-item {
    width: 45%;
  }
}

@media (max-width: 576px) {
  .timeline-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .timeline-item {
    width: 100%;
  }

  .card {
    text-align: left;
  }
}

.timeline-wrapper .timeline-item {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-wrapper.show .timeline-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.timeline-wrapper.show .timeline-item:nth-child(1) {
  transition-delay: 0.1s;
}

.timeline-wrapper.show .timeline-item:nth-child(2) {
  transition-delay: 0.25s;
}

.timeline-wrapper.show .timeline-item:nth-child(3) {
  transition-delay: 0.4s;
}

.timeline-wrapper.show .timeline-item:nth-child(4) {
  transition-delay: 0.55s;
}

.timeline-wrapper.show .timeline-item:nth-child(5) {
  transition-delay: 0.7s;
}

/* ================= FIX FOR 768px ================= */
@media (max-width: 768px) {
  .timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;

    position: relative;
    padding-left: 30px;
  }

  .timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #f2b233;
  }

  .timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    width: 100%;
  }

  .timeline-item::after {
    display: none;
  }

  .dot {
    margin: 50px 0 0 0;
    flex-shrink: 0;
  }

  .card {
    width: 100%;
  }
}

/* ====================why chooses========= */
.why-section {
  padding: 0px 20px;
  /* background: #f5f6f8; */
  text-align: center;
  margin-top: 10px;
}

.why-heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #0f172a;
}

.why-heading p {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: auto;
}

.why-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: left;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateY(60px) scale(0.95);

  transition:
    transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.6s ease,
    box-shadow 0.4s ease;
}

.why-grid.show .why-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.why-grid.show .why-card:nth-child(1) {
  transition-delay: 0.05s;
}

.why-grid.show .why-card:nth-child(2) {
  transition-delay: 0.1s;
}

.why-grid.show .why-card:nth-child(3) {
  transition-delay: 0.15s;
}

.why-grid.show .why-card:nth-child(4) {
  transition-delay: 0.2s;
}

.why-grid.show .why-card:nth-child(5) {
  transition-delay: 0.25s;
}

.why-grid.show .why-card:nth-child(6) {
  transition-delay: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.12);
}

.icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ff6a1a, #ff8c42);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 15px;

  transform: scale(0.85);
  transition: transform 0.4s ease;
}

/* ICON POP ANIMATION */
.why-grid.show .icon {
  transform: scale(1);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f172a;
}

.why-card p {
  font-size: 16px;
  color: #6b7280;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-heading h2 {
    font-size: 26px;
    padding-top: 40px;
  }
}

/* ============================trusted=============================  */

.trusted-section {
  background: #000;
  padding: 80px 20px 120px;
  text-align: center;
  position: relative;
  overflow: visible;
  margin-bottom: 60px;
  margin-top: 80px;
}

.trusted-section p {
  color: #d1d5dc;
}

.trusted-title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.trusted-sub {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 40px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;

  perspective: 1000px;
}

.trusted-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 13px;
  text-align: left;

  opacity: 0;

  transform: translateY(60px) scale(0.96) rotateX(8deg);
  transform-origin: center;

  transform-style: preserve-3d;
  will-change: transform, opacity;
  backface-visibility: hidden;

  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

.trusted-grid.show .trusted-card {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
}

.trusted-card:hover {
  transform: translateY(-10px) scale(1.04);
}

.trusted-grid.show .trusted-card:nth-child(1) {
  transition-delay: 0.1s;
}

.trusted-grid.show .trusted-card:nth-child(2) {
  transition-delay: 0.2s;
}

.trusted-grid.show .trusted-card:nth-child(3) {
  transition-delay: 0.3s;
}

.trusted-grid.show .trusted-card:nth-child(4) {
  transition-delay: 0.4s;
}

.trusted-grid.show .trusted-card:nth-child(5) {
  transition-delay: 0.5s;
}

.trusted-grid.show .trusted-card:nth-child(6) {
  transition-delay: 0.6s;
}

.trusted-grid.show .trusted-card:nth-child(7) {
  transition-delay: 0.7s;
}

.trusted-grid.show .trusted-card:nth-child(8) {
  transition-delay: 0.8s;
}

.trusted-card:hover {
  transform: rotateX(0deg) rotateY(0deg) scale(1.05) translateY(-6px);
  box-shadow:
    0 20px 40px rgba(255, 106, 0, 0.25),
    0 40px 80px rgba(0, 0, 0, 0.25);
}

.trusted-highlight {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translate(-50%, 40px) scale(0.8);

  background: #ff6a00;
  color: #fff;

  padding: 28px 40px;
  border-radius: 12px;

  width: 90%;
  max-width: 600px;

  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.trusted-highlight.show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

@media (max-width: 992px) {
  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trusted-grid {
    gap: 14px;
  }

  .trusted-card {
    transform: translateY(40px) scale(0.9);
  }

  .trusted-grid.show .trusted-card {
    transform: translateY(0) scale(1);
  }

  .trusted-highlight {
    bottom: -50px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .trusted-grid {
    grid-template-columns: 1fr;
  }

  .trusted-title {
    font-size: 22px;
  }

  .trusted-highlight {
    bottom: -60px;
    padding: 18px;
  }

  .trusted-highlight h3 {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trusted-grid {
    gap: 14px;
  }

  .trusted-card {
    transform: translateY(40px) scale(0.9);
  }

  .trusted-grid.show .trusted-card {
    transform: translateY(0) scale(1);
  }

  .trusted-highlight {
    bottom: -50px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .trusted-grid {
    grid-template-columns: 1fr;
  }

  .trusted-title {
    font-size: 22px;
  }

  .trusted-highlight {
    bottom: -60px;
    padding: 18px;
  }

  .trusted-highlight h3 {
    font-size: 20px;
  }
}

.trusted-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trusted-card .logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.trusted-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #111;
}

.trusted-card span {
  font-size: 13px;
  color: #6b7280;
}

.brand-section {
  overflow: hidden;
  background: #fff;
  padding: 40px 0;
}

.brand-container {
  width: 100%;
  overflow: hidden;
}

.brand-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollBrand 20s linear infinite;
}

.brand-track img {
  height: 65px;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s;
}

.brand-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollBrand {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-section {
  overflow: hidden;
  background: #fff;
  padding: 40px 0;
}

.brand-container {
  width: 100%;
  overflow: hidden;
}

.brand-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollBrand 20s linear infinite;
}

.brand-track img {
  height: 65px;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s;
}

.brand-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollBrand {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========================brand=========================== */
.brand-section {
  padding: 140px 20px;
}

.brand-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-container img {
  max-height: 60px;
  width: auto;
  object-fit: contain;

  /* 🔥 ANIMATION INITIAL STATE */
  opacity: 0;
  transform: translateY(30px) scale(0.9);

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease,
    filter 0.3s ease;
}

.brand-container.show img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.brand-container.show img:nth-child(1) {
  transition-delay: 0.05s;
}

.brand-container.show img:nth-child(2) {
  transition-delay: 0.1s;
}

.brand-container.show img:nth-child(3) {
  transition-delay: 0.15s;
}

.brand-container.show img:nth-child(4) {
  transition-delay: 0.2s;
}

.brand-container.show img:nth-child(5) {
  transition-delay: 0.25s;
}

.brand-container.show img:nth-child(6) {
  transition-delay: 0.3s;
}

.brand-container img:hover {
  transform: translateY(-5px) scale(1.05);
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .brand-container {
    justify-content: center;
    gap: 30px;
  }

  .brand-container img {
    max-height: 50px;
  }

  .brand-section {
    padding: 80px 20px;
  }
}

@media (max-width: 600px) {
  .brand-container {
    gap: 20px;
  }

  .brand-container img {
    max-height: 50px;
  }

  .brand-section {
    padding: 80px 20px;
  }
}

/* ==============about section================ */

.about92 {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.big-padding {
  padding-top: 120px;
}

.wrap92 {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.left92 {
  flex: 1;
  max-width: 520px;
}

.title92 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.25;
  margin-bottom: 25px;
}

.text92 {
  font-size: 15px;
  color: #3d3d3e;
  line-height: 1.8;
  margin-bottom: 18px;
}

.bottom92 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.line92 {
  width: 70px;
  height: 2px;
  background: #f26522;
}

.quote92 {
  font-size: 15px;
  font-weight: 500;
  color: #f26522;
  font-style: italic;
}

.right92 {
  flex: 1;
  position: relative;
}

.img92 {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.badge92 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #ff6a00;
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
}

.badge92 span {
  font-size: 20px;
  font-weight: 700;
  display: block;
}

.left92 {
  position: relative;
  z-index: 5;
}

.right92 {
  position: relative;
  z-index: 1;
}

.img92 {
  transform-origin: center;
  will-change: transform;
}

@media (max-width: 992px) {
  .wrap92 {
    gap: 50px;
  }

  .title92 {
    font-size: 30px;
    padding-top: 50px;
  }
}

@media (max-width: 768px) {
  .wrap92 {
    flex-direction: column;
    gap: 40px;
  }

  .title92 {
    font-size: 26px;
    padding-top: 50px;
  }
}

@media (max-width: 480px) {
  .title92 {
    font-size: 22px;
    padding-top: 50px;
  }
}

@media (max-width: 992px) {
  .about92 {
    padding: 70px 20px;
  }
}

@media (max-width: 768px) {
  .about92 {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .about92 {
    padding: 50px 12px;
  }
}

/* ================= STATS SECTION FIXED ================= */

.stats92 {
  position: relative;
  z-index: 1;
  background: #000;
  text-align: center;
  padding: clamp(70px, 8vw, 110px) 20px;
  overflow: hidden;
}

.stats92 h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.stats92 p {
  color: #fff;
  font-size: clamp(16px, 1.2vw, 14px);
  margin-bottom: clamp(30px, 5vw, 60px);
}

.stats92 .grid92 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 1200px;
  margin: auto;
}

.stats92 .card92 {
  text-align: center;
  cursor: pointer;
}

.stats92 .icon92 {
  width: clamp(50px, 6vw, 60px);
  height: clamp(50px, 6vw, 60px);
  background: #ff6a00;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 12px;
}

.stats92 .icon92 svg {
  width: clamp(22px, 3vw, 36px);
}

.stats92 .num92 {
  font-size: clamp(20px, 2.5vw, 32px);
  color: #ffb400;
}

.stats92 .label92 {
  font-size: clamp(12px, 1.3vw, 15px);
  color: #aaa;
}

.stats92 .card92:hover .icon92 {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.4);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .stats92 .grid92 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .stats92 .grid92 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .stats92 {
    padding: 60px 15px;
  }

  .stats92 .grid92 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .stats92 .grid92 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stats92 h2 {
    font-size: 22px;
  }
}

/* =========visit showroom section=============== */

.show92 {
  padding: 130px 20px;
  text-align: center;
}

.show92 h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.show92 p {
  color: #666;
  font-size: 16px;
  margin-bottom: 60px;
}

.show92 .grid92 {
  column-count: 3;
  column-gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.show92 .card92 {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.show92 .card92 img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.show92 .card92:hover img {
  transform: scale(1.08);
}

.show92 .card92:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .show92 {
    padding: 80px 20px;
  }

  .show92 .grid92 {
    column-count: 2;
    column-gap: 18px;
  }

  .show92 h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .show92 {
    padding: 60px 15px;
  }

  .show92 .grid92 {
    column-count: 2;
    column-gap: 14px;
  }

  .show92 h2 {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .show92 .grid92 {
    column-count: 2;
    column-gap: 10px;
  }

  .show92 h2 {
    font-size: 22px;
  }
}

/* ==================Our Premium Collection===================== */

.collection92 {
  padding: 0 20px 50px 20px;
  text-align: center;
}

.collection92 h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.collection92 p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

.collection92 .grid92 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: auto;
}

.collection92 .card92 {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.collection92 .card92 img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.premium-collection .premium-collection-div img{
	transition: 0.5s;
	border-radius: 14px;
	margin-bottom: 30px;
}

.premium-collection .premium-collection-div img:hover::before {
  opacity: 1;
}

.premium-collection .premium-collection-div img:hover {
  transform: scale(1.08);
}

.collection92 .label92 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}

.collection92 .card92::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.collection92 .card92::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(255, 255, 255, 0.2),
      transparent);
  opacity: 0;
  transition: 0.4s;
}

.collection92 .card92:hover::before {
  opacity: 1;
}

.collection92 .card92:hover img {
  transform: scale(1.08);
}
/* ================= COLLECTION CARD FIX ================= */

.collection92 .card92{

  position: relative;

  overflow: hidden;

  border-radius: 16px;

  cursor: pointer;

  transform: translateZ(0);

  -webkit-transform: translateZ(0);

  will-change: transform;
}

/* IMAGE */

.collection92 .card92 img{

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition:
  transform .6s ease,
  filter .6s ease;

  backface-visibility: hidden;

  -webkit-backface-visibility: hidden;
}

/* OVERLAY */

.collection92 .card92::after{

  content: "";

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,.6),
  transparent
  );

  z-index: 1;
}

/* SHINE EFFECT */

.collection92 .card92::before{

  content: "";

  position: absolute;

  inset: 0;

  background:
  radial-gradient(
  circle at center,
  rgba(255,255,255,.18),
  transparent
  );

  opacity: 0;

  transition: opacity .5s ease;

  z-index: 2;

  pointer-events: none;
}

/* LABEL */

.collection92 .label92{

  position: absolute;

  left: 15px;

  bottom: 15px;

  z-index: 5;

  color: #fff;

  font-size: 14px;

  font-weight: 500;
}

/* HOVER */

.collection92 .card92:hover::before{

  opacity: 1;
}

.collection92 .card92:hover img{

  transform: scale(1.08);
}

/* ================= MOBILE FIX ================= */

@media (max-width:768px){

  .collection92 .card92:hover img{

    transform: scale(1.04);
  }

  .collection92 .card92{

    border-radius: 14px;
  }
}
/* ================= 1K SCREEN FIX ================= */

@media (max-width:1024px){

  .collection92 .grid92{

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }
}

/* ================= IOS FIX ================= */

@supports (-webkit-touch-callout: none){

  .collection92 .card92 img{

    transform: translateZ(0);
  }
}
.team-section .grid92 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: auto;
}

.team-section .card92 {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 992px) {
  .team-section .grid92 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .team-section .grid92 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
/* ============= CARDS SECTION =============== */

.t93 {
  padding: 20px 20px;
  text-align: center;
}

.t93-title {
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.t93-sub {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 50px;
}

.t93-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* TABLET */

@media (max-width: 992px) {

  .t93-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .t93-title {
    font-size: 30px;
  }

  .t93-sub {
    font-size: 15px;
    margin-bottom: 40px;
  }
}

/* MOBILE */

@media (max-width: 768px) {

  .t93-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .t93-title {
    font-size: 26px;
  }

  .t93-sub {
    margin-bottom: 30px;
  }

  .t93-card {
    padding: 18px;
  }

  .t93-text {
    font-size: 13px;
  }
}

/* SMALL MOBILE */

@media (max-width: 480px) {

  .t93 {
    padding: 15px 14px;
  }

  .t93-title {
    font-size: 22px;
  }

  .t93-sub {
    font-size: 13px;
  }

  .t93-card {
    padding: 16px;
    border-radius: 16px;
  }

  .t93-avatar {
    width: 42px;
    height: 42px;
  }

  .t93-name {
    font-size: 13px;
  }

  .t93-role {
    font-size: 11px;
  }

  .t93-text {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* CARD */

.t93-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.t93-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* TOP */

.t93-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.t93-user {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* AVATAR */

.t93-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ff6a00;
  object-fit: cover;
}

.t93-name {
  font-size: 16px;
  font-weight: 600;
}

.t93-role {
  font-size: 12px;
  color: #9ca3af;
}

.t93-quote {
  font-size: 34px;
  color: #facc15;
}

.t93-stars svg {
  width: 100%;
  max-width: 200px;
  height: 25px;
}

.t93-stars {
  margin-bottom: 8px;
}

.t93-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.5;
}

/* ================= TEAM SECTION ================= */


.family-tree99{

    width:100%;

    padding:50px 0;

    background:linear-gradient(135deg, #faf8f5 0%, #fbfaf7 25%, #fcfbfa 50%, #fefdfc 75%, #ffffff 100%);
}

/* ================= HEADER ================= */

.team-header{

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    margin-bottom:90px;
}

/* ================= TITLE ================= */

.team-title{

    font-size:32px;

    font-weight:500;

    color:#7a3e18;

    line-height:1.25;

    letter-spacing:0.5px;

    text-align:center;

    margin:0 auto;
}

/* ================= BUTTON ================= */

.team-btn{

    margin-top:25px;

    padding:12px 28px;

    border-radius:40px;

    border:1px solid #efb668;

    background:#f5f0e8;

    backdrop-filter:blur(6px);

    transition:all .35s ease;

    display:inline-flex;

    align-items:center;

    justify-content:center;
}

/* HOVER */

.team-btn:hover{

    background:#7a3e18;

    color:#fff;

    border-color:#7a3e18;
}

/* ================= TREE ================= */

.family-tree99-tree{

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;
}

/* ================= LEVEL ================= */

.family-tree99-level{

    display:flex;

    justify-content:center;

    align-items:flex-start;

    gap:90px;

    position:relative;

    width:100%;
}

/* ================= PERSON ================= */

.family-tree99-person{

    display:flex;

    flex-direction:column;

    align-items:center;

    position:relative;
}

/* ================= IMAGE ================= */

.family-tree99-img{

    width:140px;

    height:140px;

    border-radius:50%;

    overflow:hidden;

    border:4px solid #ffffff;

    background:#f2f2f2;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);

    transition:.35s ease;
}

/* HOVER */

.family-tree99-img:hover{

    transform:translateY(-8px);
}

/* IMG */

.family-tree99-img img{

    width:100%;

    height:100%;

    object-fit:cover;
}

/* ================= NAME ================= */

.family-tree99-name{

    margin-top:16px;

    font-size:20px;

    font-weight:600;

    color:#111827;

    text-align:center;
}

/* ================= CONNECTOR ================= */

/* TOP PERSON */

.family-tree99-top{

    position:relative;

    margin-bottom:60px;
}

/* LINE DOWN */

/*.family-tree99-top::after{*/

/*    content:"";*/

/*    position:absolute;*/

/*    width:2px;*/

/*    height:48px;*/

/*    background:#444;*/

/*    left:50%;*/

/*    top:192px;*/

/*    transform:translateX(-50%);*/
/*}*/

/* SECOND LEVEL */

.family-tree99-second{

    position:relative;

    margin-bottom:80px;
}

/* HORIZONTAL */

/*.family-tree99-second::before{*/

/*    content:"";*/

/*    position:absolute;*/

/*    width:340px;*/

/*    height:2px;*/

/*    background:#444;*/

/*    top:-35px;*/

/*    left:50%;*/

/*    transform:translateX(-50%);*/
/*}*/

/* CHILD LINE */

/*.family-tree99-second .family-tree99-person::before{*/

/*    content:"";*/

/*    position:absolute;*/

/*    width:2px;*/

/*    height:35px;*/

/*    background:#444;*/

/*    top:-35px;*/

/*    left:50%;*/

/*    transform:translateX(-50%);*/
/*}*/

/* ================= THIRD LEVEL ================= */

.family-tree99-children{

    margin-top:70px;

    position:relative;
}

/* VERTICAL */

/*.family-tree99-children::before{*/

/*    content:"";*/

/*    position:absolute;*/

/*    width:2px;*/

/*    height:35px;*/

/*    background:#444;*/

/*    top:-35px;*/

/*    left:50%;*/

/*    transform:translateX(-50%);*/
/*}*/

/* HORIZONTAL */

/*.family-tree99-children::after{*/

/*    content:"";*/

/*    position:absolute;*/

/*    width:190px;*/

/*    height:2px;*/

/*    background:#444;*/

/*    top:-35px;*/

/*    left:50%;*/

/*    transform:translateX(-50%);*/
/*}*/

/* CHILD ROW */

.family-tree99-child-row{

    display:flex;

    justify-content:center;

    gap:70px;
}

/* CHILD LINE */

/*.family-tree99-child-row .family-tree99-person::before{*/

/*    content:"";*/

/*    position:absolute;*/

/*    width:2px;*/

/*    height:35px;*/

/*    background:#444;*/

/*    top:-35px;*/

/*    left:50%;*/

/*    transform:translateX(-50%);*/
/*}*/

/* ================= RESPONSIVE ================= */

@media(max-width:1199px){

    .family-tree99-level{

        gap:70px;
    }

    .family-tree99-img{

        width:120px;
        height:120px;
    }

    .family-tree99-name{

        font-size:18px;
    }

    /*.family-tree99-second::before{*/

    /*    width:280px;*/
    /*}*/
}

@media(max-width:991px){

    .family-tree99{

        padding:70px 0;
    }

    .team-header{

        margin-bottom:70px;
    }

    .team-title{

        font-size:32px;
    }

    .family-tree99-level{

        gap:50px;
    }

    .family-tree99-img{

        width:100px;
        height:100px;
    }

    .family-tree99-name{

        font-size:16px;
    }

    /*.family-tree99-second::before{*/

    /*    width:220px;*/
    /*}*/

    .family-tree99-children::after{

        width:150px;
    }

    .family-tree99-child-row{

        gap:45px;
    }
}

/* MOBILE SAME TREE FORMAT */

@media(max-width:767px){

    .family-tree99{

        padding:60px 0;
    }

    .team-header{

        margin-bottom:60px;
    }

    .team-title{

        font-size:26px;

        line-height:1.35;
    }

    .team-btn{

        padding:10px 24px;

        font-size:14px;
    }

    .family-tree99-level{

        gap:30px;
    }

    .family-tree99-img{

        width:80px;
        height:80px;

        border-width:3px;
    }

    .family-tree99-name{

        font-size:13px;

        line-height:1.4;
    }

    .family-tree99-top{

        margin-bottom:50px;
    }

    /*.family-tree99-top::after{*/

    /*    height:41px;*/

    /*    top:98px;*/
    /*}*/

    .family-tree99-second{

        margin-bottom:60px;
    }

    .family-tree99-second::before{

        width:160px;

        top:-28px;
    }

    .family-tree99-second .family-tree99-person::before{

        height:28px;

        top:-28px;
    }

    .family-tree99-children{

        margin-top:55px;
    }

    .family-tree99-children::before{

        height:28px;

        top:-28px;
    }

    .family-tree99-children::after{

        width:110px;

        top:-28px;
    }

    .family-tree99-child-row{

        gap:25px;
    }

    .family-tree99-child-row .family-tree99-person::before{

        height:28px;

        top:-28px;
    }
}

@media(max-width:480px){

    .team-title{

        font-size:22px;
    }

    .family-tree99-level{

        gap:20px;
    }

    .family-tree99-img{

        width:65px;
        height:65px;
    }

    .family-tree99-name{

        font-size:11px;
    }

    /*.family-tree99-second::before{*/

    /*    width:120px;*/
    /*}*/

    .family-tree99-children::after{

        width:80px;
    }

    .family-tree99-child-row{

        gap:18px;
    }
}

/* =======================================contact========================== */

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.floating-chat {
  position: absolute;
  right: -130px;
  bottom: 20px;
  z-index: 10;
}

.floating-chat a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #4a4a4a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.floating-chat svg {
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .floating-chat {
    right: 20px;
    bottom: -70px;
  }
}

@media (max-width: 767px) {
  .floating-chat {
    position: static;
    margin-top: 25px;
    display: flex;
    justify-content: center;
  }

  .floating-chat a {
    padding: 10px 16px;
    font-size: 14px;
  }
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.contact-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1c1c1c;
  padding-top: 60px;

}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  margin: 0 25px;
}

.contact-form:hover {
  transform: translateY(-5px);
}

.form-row {
  display: flex;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
  padding: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6a2c;
  box-shadow: 0 0 0 2px rgba(255, 106, 44, 0.15);
  outline: none;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 13px;
  background: linear-gradient(45deg, #ff6a2c, #ff8c42);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.03);
}

.contact-left {
  flex: 1;
  width: 100%;
}

.email {
  margin-top: 15px;
  font-size: 16px;
  color: #444;
  font-weight: 700;
  text-align: center;

}

.contact-info {
  flex: 1;
  padding: 10px;
}

.contact-info h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.address {
  margin-bottom: 25px;
}

.address p {
  font-weight: 500;
  margin-bottom: 7px;
  line-height: 1.3;
}

.address span {
  font-size: 15px;
  display: block;
  line-height: 1.4;
}

.info-box {
  height: 40px;
  border: 1px solid #ff6a2c;
  border-radius: 6px;
  margin: 10px 0;
  width: 50%;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-title {
    font-size: 26px;
  }
}

.contact93 {
  padding: 70px 20px;
  /* background: #f4f4f4; */
}

.contact93-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact93-card {
  background: #fff;
  border-radius: 18px;
  padding: 1px;
  text-align: center;
  box-shadow: 0px 4px 4px 0px #00000040;

  transition: 0.3s;
}

.contact93-card:hover {
  transform: translateY(-8px);
}

.contact93-img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.contact93-box {
  background: #ff6a00;
  color: #fff;
  padding: 10px;
  border-radius: 26px;
  margin: 10px 0 10px;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.contact93-box .icon1 {
  display: block;
  font-size: 18px;
  margin: 0 auto 8px;
  text-align: center;
}

.contact93-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #ff6a00;
  background: transparent;
  color: #ff6a00;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
  margin: 10px;
}

.contact93-btn:hover {
  background: #ff6a00;
  color: #fff;
}

@media (max-width: 992px) {
  .contact93-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact93-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ===========meet comfort================ */
.team-section {
  background: linear-gradient(135deg,
      #faf8f5 0%,
      #fbfaf7 25%,
      #fcfbfa 50%,
      #fefdfc 75%,
      #ffffff 100%);

  padding: 100px 70px;
}

.team-title {
  font-size: 44px;
  font-weight: 500;
  color: #7a3e18;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.team-btn {
  margin-top: 25px;
  padding: 10px 26px;
  border-radius: 40px;
  border: 1px solid #efb668;
  background: #f5f0e8;

  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.team-btn:hover {
  background: #7a3e18;
  color: #fff;
  border-color: #7a3e18;
}

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

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;

  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.08),
    0 15px 40px rgba(0, 0, 0, 0.06);

  transition: all 0.45s ease;
}
/* 
.team-card:hover .team-img {
  transform: translateY(-8px) scale(1.05);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.12),
    0 25px 60px rgba(122, 62, 24, 0.15);
     transform: translateY(-8px) scale(0.70);
} */

.team-name {
  margin-top: 16px;
  font-weight: 500;
}

.team-role {
  font-size: 14px;
  color: #777;
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 20px;
    text-align: center;
  }

  .team-title {
    font-size: 30px;
  }
}

/* ============================comfort=================== */
/* SECTION ANIMATION */

.comfort-section {
  position: relative;

  width: 100%;
  min-height: 850px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* IMAGE ZOOM EFFECT */

.comfort-img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  animation: zoomBg 12s ease-in-out infinite alternate;
}

/* DARK OVERLAY */

.comfort-overlay {
  position: absolute;
  inset: 0;

  background: #00000075;
  z-index: 1;
}

/* CONTENT */

.comfort-content {
  position: relative;
  z-index: 2;

  text-align: center;
  color: #fff;

  padding: 20px;
  max-width: 900px;

  animation: fadeUp 1.2s ease;
}

/* HEADING */

.comfort-content h2 {
  font-size: 50px;
  line-height: 1.05;
  font-weight: 700;

  margin-bottom: 20px;

  animation: slideDown 1s ease;
}

/* PARAGRAPH */

.comfort-content p {
  font-size: 19px;
  margin-bottom: 35px;

  opacity: 0.95;
  letter-spacing: 0.3px;

  animation: fadeIn 1.8s ease;
}

/* BUTTON */

.comfort-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 34px;

  background: #fff;
  color: #222;

  border-radius: 50px;
  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition: 0.4s ease;

  animation: buttonPop 2s ease;
}

.comfort-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: #f3f3f3;
}

/* ANIMATIONS */

@keyframes zoomBg {

  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

@keyframes fadeUp {

  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {

  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {

  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.95;
  }
}

@keyframes buttonPop {

  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================= LARGE LAPTOP ================= */

@media (max-width: 1200px) {
  .comfort-section {
    min-height: 600px;
  }

  .comfort-content h2 {
    font-size: 60px;
  }
}

/* ================= TABLET ================= */

@media (max-width: 992px) {
  .comfort-section {
    min-height: 520px;
  }

  .comfort-content h2 {
    font-size: 48px;
  }

  .comfort-content p {
    font-size: 15px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
  .comfort-section {
    min-height: 430px;
  }

  .comfort-content h2 {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .comfort-content p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .comfort-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  .contact-form {
  flex: 1;
  background: #ffffff;
  padding: 20px 10px !important;
   margin: 0 !important;
}
.address-heading {
    font-size: 19px !important;
}
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .comfort-section {
    min-height: 360px;
  }

  .comfort-content h2 {
    font-size: 30px;
  }

  .comfort-content p {
    font-size: 13px;
  }

  .comfort-btn {
    width: 100%;
    max-width: 220px;
  }
}

/* ================= SECTION ================= */

.category-filter-section {
  width: 100%;
  padding: 20px 15px;
}

.category-filter-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid #ff6e1f;
  background: #fff;
  color: #222;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.filter-btn.active {
  background: #ff6e1f;
  color: #fff;
}

.filter-btn:hover {
  background: #ff6e1f;
  color: #fff;
}

/* ================= TABLET ================= */

@media (max-width: 768px) {
  .category-filter-section {
    padding: 18px 12px;
  }

  .category-filter-wrap {
    gap: 8px;
  }

  .filter-btn {
    padding: 7px 16px;
    font-size: 13px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 480px) {
  .category-filter-wrap {
    justify-content: flex-start;
  }

  .filter-btn {
    padding: 7px 14px;
    font-size: 12px;
  }
}

/* ================= SECTION ================= */

.mattress-section {
  width: 100%;
  padding: 80px 20px;
}

.mattress-heading {
  text-align: center;
  margin-bottom: 50px;
}

.mattress-heading h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.mattress-heading p {
  font-size: 17px;
  color: #777;
}

.mattress-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.mattress-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.mattress-card:hover {
  transform: translateY(-6px);
}

.mattress-img-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.mattress-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.mattress-card:hover img {
  transform: scale(1.05);
}

.mattress-content {
  padding: 16px;
}

.mattress-content span {
  display: inline-block;
  font-size: 12px;
  color: #888;
  background: #f5f0e8;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.mattress-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .mattress-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .mattress-section {
    padding: 70px 18px;
  }

  .mattress-heading h2 {
    font-size: 42px;
  }

  .mattress-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 767px) {
  .mattress-section {
    padding: 60px 15px;
  }

  .mattress-heading {
    margin-bottom: 35px;
  }

  .mattress-heading h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .mattress-heading p {
    font-size: 14px;
  }

  .mattress-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mattress-img-wrap {
    height: 220px;
  }

  .mattress-content h3 {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .mattress-heading h2 {
    font-size: 28px;
  }

  .mattress-img-wrap {
    height: 200px;
  }

  .mattress-content {
    padding: 14px;
  }

  .mattress-content h3 {
    font-size: 16px;
  }
}

.mattress-heading-dark {
  background: #000;
  padding: 40px 20px;
}

.mattress-heading-dark h2,
.mattress-heading-dark p {
  color: #fff;
}

.crafted-section {
  padding: 60px 0;
}

.crafted-box {
  background: linear-gradient(135deg, #fffbeb 0%, #faf8f5 50%, #ffffff 100%);
  border-radius: 24px;
  padding: 45px 30px;
  text-align: center;
}

.crafted-title {
  font-size: 34px;
  font-weight: 500;
  color: #7b3306;
  margin-bottom: 40px;
}

.crafted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.crafted-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #e3d7ca;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: #fff;
}

.crafted-icon i {
  color: #7b3306;

  font-size: 18px;
}

.crafted-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: #101828;

  margin-bottom: 6px;
}

.crafted-item p {
  font-size: 14px;
  color: #4a5565;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .crafted-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .crafted-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .crafted-box {
    padding: 35px 20px;
  }

  .crafted-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .crafted-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.mattress-content-brown span {
  background: #fffbeb;
  color: #7b3306;

  border: 1px solid #fee685;
}

/* ============================  curtains fabric Section =================== */
.roomSecX9 {
  padding: 70px 20px;
  overflow: hidden;
}

.roomGridX9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.roomCardX9 {
  position: relative;
  height: 430px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;

  transform: translateY(50px);
  opacity: 0;

  animation: fadeUpX9 1s ease forwards;
}

.roomCardX9:nth-child(2) {
  animation-delay: 0.2s;
}

.roomCardX9:nth-child(3) {
  animation-delay: 0.4s;
}

.roomCardX9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.roomOverlayX9 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.08),
      transparent);
}

.roomCardX9 h3 {
  position: absolute;
  bottom: 22px;
  left: 22px;

  color: #fff;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.5px;
  z-index: 2;

  transition: all 0.4s ease;
}

.roomCardX9:hover img {
  transform: scale(1.08);
}

.roomCardX9:hover h3 {
  transform: translateY(-6px);
}

@keyframes fadeUpX9 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .roomGridX9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .roomCardX9 {
    height: 380px;
  }

  .roomCardX9 h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .roomSecX9 {
    padding: 50px 15px;
  }

  .roomGridX9 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .roomCardX9 {
    height: 340px;
  }

  .roomCardX9 h3 {
    font-size: 22px;
    bottom: 18px;
    left: 18px;
  }
}

@media (max-width: 480px) {
  .roomCardX9 {
    height: 300px;
    border-radius: 14px;
  }

  .roomCardX9 h3 {
    font-size: 20px;
  }
}

/* ===========================brands============================= */
.brandSectionX {
  padding: 70px 0;
}

.brandGridX {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  align-items: center;
}

.brandItemX {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: 0.4s ease;
}

.brandItemX img {
  width: 100%;
  max-width: 200px;
  height: 80px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .brandGridX {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 20px;
  }

  .brandItemX img {
    max-width: 140px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .brandSectionX {
    padding: 50px 0;
  }

  .brandGridX {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 15px;
  }

  .brandItemX img {
    max-width: 120px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .brandGridX {
    gap: 22px 12px;
  }

  .brandItemX {
    padding: 6px;
  }

  .brandItemX img {
    max-width: 100px;
    height: 45px;
  }
}

.sectionTitleX {
  text-align: center;
  margin-bottom: 50px;
}

.sectionTitleX h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

@media (max-width: 767px) {
  .sectionTitleX {
    margin-bottom: 35px;
  }

  .sectionTitleX h2 {
    font-size: 28px;
  }
}

.brandGridX {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 45px 30px;
  align-items: center;
}

@media (max-width: 767px) {
  .brandGridX {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .brandGridX {
    grid-template-columns: 1fr !important;
  }
}

.faqSecX {
  padding: 80px 0;
  background: #f5f5f5;
}

.faqTitleX {
  text-align: center;
  margin-bottom: 45px;
}

.faqTitleX h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.faqWrapX {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faqItemX {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
}

.faqQuestionX {
  width: 100%;
  border: none;
  background: transparent;
  padding: 28px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  cursor: pointer;

  font-size: 20px;
  font-weight: 600;
  color: #222;
  text-align: left;
}

.faqIconX {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;

  border: 1px solid #d8d8d8;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  transition: 0.4s ease;
}

.faqAnswerX {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faqAnswerX p {
  padding: 0 30px 28px;
  margin: 0;

  font-size: 16px;
  line-height: 1.8;
  color: #d8d8d8;
}

.faqItemX.active {
  background: #000;
  border-color: #000;
}

.faqItemX.active .faqQuestionX {
  color: #ff8c00;
}

.faqItemX.active .faqAnswerX {
  max-height: 300px;
}

.faqItemX.active .faqIconX {
  border-color: #ff8c00;
  color: #ff8c00;
  transform: rotate(45deg);
}

@media (max-width: 991px) {
  .faqQuestionX {
    padding: 24px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .faqSecX {
    padding: 60px 0;
  }

  .faqTitleX {
    margin-bottom: 35px;
  }

  .faqTitleX h2 {
    font-size: 32px;
  }

  .faqQuestionX {
    padding: 20px;
    font-size: 16px;
    gap: 15px;
  }

  .faqAnswerX p {
    padding: 0 20px 22px;
    font-size: 15px;
  }

  .faqIconX {
    min-width: 36px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}


/* =======================product============================= */
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.page-btn {
  background: transparent;
  border: none;
  font-size: 13px;
  color: #777;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.page-numbers {
  display: flex;
  gap: 10px;
}

.page-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #e5e5e5;
  color: #111;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.page-number.active {
  background: #111;
  color: #fff;
}

.page-btn:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}


.arrival-section {
  padding: 70px 6%;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
}

.arrival-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 35px;
  align-items: start;
}

/* BIG CARD */

.arrival-big-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.arrival-big-card {
  background: #fff;
  transition: 0.4s ease;
}

.arrival-big-card:hover {
  transform: translateY(-5px);
}

/* RIGHT GRID */

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.arrival-small-card {
  background: #fff;
  transition: 0.4s ease;
}

.arrival-small-card:hover {
  transform: translateY(-5px);
}

.arrival-small-card img {
  width: 100%;
  height: auto;
  /*height: 170px;*/
  object-fit: cover;
  display: block;
}

/* CONTENT */

.arrival-content {
  padding: 14px 8px 5px;
}

.arrival-content span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 4px;
}

.arrival-content h3 {
  font-size: 15px;
  color: #111;
  font-weight: 500;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .arrival-wrapper {
    grid-template-columns: 1fr;
  }

  .arrival-big-card img {
    /*height: 420px;*/
  }

}

@media(max-width:600px) {

  .arrival-grid {
    grid-template-columns: 1fr;
  }

  .arrival-big-card img {
    /*height: 300px;*/
  }

}

.top-selling-section {
  padding: 80px 7%;
}

.top-heading {
  text-align: center;
  margin-bottom: 55px;
}

.top-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
}

.top-selling-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.top-card {
  transition: 0.4s ease;
}

.top-card:hover {
  transform: translateY(-8px);
}

.top-img {
  overflow: hidden;
  background: #fff;
}

.top-img img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.top-card:hover img {
  transform: scale(1.05);
}

.top-content {
  padding-top: 18px;
}

.top-content h3 {
  font-size: 15px;
  color: #222;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 4px;
}

.top-content p {
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .top-selling-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {

  .top-selling-grid {
    grid-template-columns: 1fr;
  }

  .top-img img {
    height: 320px;
  }

  .top-heading h2 {
    font-size: 28px;
  }

}

/* SECTION */



.luxury-section {
  padding: 70px 6%;
}

.section-title {
  font-size: 28px;
  font-weight: 500;
  color: #2b1f16;
  margin-bottom: 40px;
}

.decor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.decor-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: 0.4s ease;
  cursor: pointer;
}

.decor-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.decor-card:hover img {
  transform: scale(1.08);
}

.card-content1 {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: #fff;
  padding: 14px 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card-content1 span {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.card-content1 h3 {
  font-size: 16px;
  font-weight: 500;
  color: #111;
}

.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #888;
  font-size: 13px;
}

.pagination .active {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width: 991px) {
  .decor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .decor-grid {
    grid-template-columns: 1fr;
  }

  .decor-card img {
    height: 350px;
  }
}

/* =====================product hero================= */
/* ===== HERO ===== */
.lh-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.lh-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.1);
  animation: lhZoom 5s ease forwards;
}

/* DARK OVERLAY */
.lh-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* CONTENT BOX */
.lh-box {
  position: absolute;
  top: 50%;
  right: -2%;

  transform: translateY(-50%) translateX(80px);

  width: 100%;
  max-width: 548px;

  background: rgb(20 20 20 / 28%);
  backdrop-filter: blur(1px);

  padding: 50px 45px;

  opacity: 0;
  animation: lhContent 1.2s ease forwards;
  animation-delay: 1s;
}

/* SMALL HEADING */
.lh-mini {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* MAIN TEXT */
.lh-title {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 28px;
}

/* BUTTON */
.lh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 110px;
  height: 45px;

  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .5px;

  transition: .4s;
}

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

/* BIRDS */
.lh-birds {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 120px;
  opacity: .6;

  animation: lhBirds 5s linear infinite alternate;
}

/* CHAT BUTTON */
.lh-chat {
  position: absolute;
  right: 25px;
  bottom: 25px;

  background: #4b4b4b;
  color: #fff;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 12px 16px;
  border-radius: 40px;

  text-decoration: none;
  font-size: 14px;

  transition: .4s;
}

.lh-chat:hover {
  background: #fff;
  color: #000;
}


/* ===== ANIMATION ===== */

/* BG ZOOM */
@keyframes lhZoom {
  to {
    transform: scale(1);
  }
}

/* CONTENT */
@keyframes lhContent {
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* BIRDS FLOAT */
@keyframes lhBirds {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-20px);
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {

  .lh-box {
    right: 20px;
    left: 20px;
    max-width: none;

    padding: 35px 25px;
  }

  .lh-title {
    font-size: 18px;
  }

  .lh-btn {
    width: 100%;
  }

}

   /* Top Button */
    .scroll-top-btn{
        position:fixed;
        right:20px;
        bottom:50px;
        width:45px;
        height:45px;
        border:none;
        border-radius:50%;
        background:#000;
        color:#fff;
        font-size:20px;
        cursor:pointer;
        display:none;
        z-index:999;
        transition:0.3s;
    }

    .scroll-top-btn:hover{
        background:#333;
    }

    .scroll-top-btn.show{
        display:block;
    }
    
    /* ================= WHATSAPP ================= */

.whatsapp-btn {
    position: fixed;
    bottom: 120px;
    right: 20px;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    background: #25d366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}
.address-heading {
    font-size: 21px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
}
