@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
  font-family: "Manrope", sans-serif;
}

.g-btn {
  position: relative;
  overflow: hidden;
  background: #fcaf17;
  color: #000;
  padding: 8px 22px;
  font-weight: 500;
  font-family: "Althy";
  border-radius: 2px;
  z-index: 1;
  transition: background 0.3s ease, color 0.3s ease;
}
.g-btn:hover {
  background: #e09a10;
  color: #000;
}
.g-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(230, 225, 217, 0.537254902);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
  z-index: -1 !important;
}
.g-btn:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}
.g-btn span {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 38px;
  font-weight: 300;
  color: #0C0C0C;
  font-family: "Althy";
}

a i {
  display: inline-block;
  transition: transform 0.3s ease;
  font-weight: 900 !important;
}

p {
  letter-spacing: 0.7px;
  font-size: 14px;
}

.card-bg {
  background-color: #f7f7f7;
}

.bg-bedge {
  background-color: #fff4dd;
}

.breadcrumb {
  justify-content: center;
  background: transparent;
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-item a {
  text-decoration: none;
  transition: 0.3s;
}
.breadcrumb .breadcrumb-item a:hover {
  opacity: 0.8;
}
.breadcrumb .breadcrumb-item.active {
  opacity: 1;
}
.breadcrumb .breadcrumb-item {
  /* 🔥 Slash separator */
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #fff;
  padding: 0 8px;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .g-btn {
    font-size: 14px;
  }
  p {
    font-size: 14px !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .g-btn {
    font-size: 14px;
  }
  p {
    font-size: 14px !important;
  }
}
@media (max-width: 575px) and (max-width: 576px) {
  .section-title {
    width: 100% !important;
    text-align: center !important;
  }
  .navigation {
    width: 30% !important;
    top: 95% !important;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .section-title {
    width: 100% !important;
    text-align: center !important;
  }
  .navigation {
    width: 20% !important;
    top: 95% !important;
  }
}
@media (min-width: 300px) and (max-width: 500px) {
  .section-title {
    font-size: 24px !important;
  }
  p {
    font-size: 14px !important;
  }
}
.main-header .main-nav {
  padding: 25px 0;
  background-color: #fdfdfd;
}
.main-header .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.main-header .nav-item .nav-link {
  color: #553421 !important;
  font-weight: 500;
  letter-spacing: 0.8px;
  font-family: "Althy";
  transition: all 0.3s ease-in-out;
}
.main-header .nav-item .nav-link:hover {
  color: #fcaf17 !important;
}
.main-header .logo-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 2;
  margin-top: -20px;
}
@media (max-width: 578px) {
  .main-header .logo-img {
    width: 120px;
    margin-left: -30px;
  }
}
.main-header .header-btn {
  position: relative;
  border: 1px solid #553421;
  color: #553421;
  font-family: "Althy";
  background: transparent;
  padding: 10px 26px;
  overflow: hidden;
  z-index: 1;
  border-radius: 1px;
  transition: color 0.5s ease, border-color 0.5s ease;
}
.main-header .header-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: #fcaf17;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1.6s cubic-bezier(0.36, 1, 0.36, 1);
  z-index: -1;
}
.main-header .header-btn:hover {
  color: #fff;
  border-color: #fcaf17;
}
.main-header .header-btn:hover::before {
  transform: translate(-50%, -50%) scale(12);
}
.main-header .mobile-nav-header {
  display: none;
}
@media (max-width: 991px) {
  .main-header .mobile-nav-header {
    display: block;
  }
}
@media (max-width: 991px) {
  .main-header .mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100%;
    background: #fff;
    z-index: 9998;
    padding: 30px;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  .main-header .mobile-nav.active {
    left: 0;
  }
  .main-header .mobile-nav .mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
  }
  .main-header .mobile-nav .mobile-close {
    font-size: 28px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
  }
  .main-header .mobile-nav .navbar-nav {
    flex-direction: column;
  }
  .main-header .mobile-nav .navbar-nav .nav-link {
    display: block;
    font-size: 13px;
  }
}
.main-header .mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 9997;
}
.main-header .mobile-overlay.active {
  display: block;
}
@media (max-width: 998px) {
  .main-header .mega-wrapper {
    height: 90vh;
    margin-bottom: 7px;
    padding: 2px;
  }
  .main-header .mega-menu-wrapper {
    padding: 20px 10px !important;
  }
}
.main-header .mega-menu-wrapper {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #fffdf9;
  z-index: 9999;
  transition: left 0.4s ease;
  padding: 60px 40px;
  overflow-y: auto;
}
.main-header .mega-menu-wrapper.active {
  left: 0;
}
.main-header .mega-menu-wrapper .nav-link {
  font-size: 25px;
  color: #001641 !important;
}
.main-header .mega-menu-wrapper .nav-link.active {
  background: none !important;
  color: #fcaf17 !important;
}
.main-header .mega-menu-wrapper .mega-close {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 30px;
  background-color: #fff7e6;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
}
.main-header .mega-menu-wrapper .row {
  align-items: stretch;
}
.main-header .mega-menu-wrapper .img-wrapper {
  height: 370px;
  overflow: hidden;
}
.main-header .mega-menu-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-header .tab-content p {
  color: #8C8C8C;
}
@media (max-width: 991px) {
  .main-header .mega-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    height: auto;
    display: none;
    background: #fff;
    z-index: 9999;
    overflow-y: auto !important;
  }
  .main-header .mega-menu-wrapper.active {
    display: block;
  }
  .main-header .section-title {
    align-items: start !important;
    text-align: left !important;
  }
  .main-header .img-wrapper {
    height: 20vh !important;
  }
}
.main-header .contact-info {
  background: #fffaef;
  padding: 20px;
  border-radius: 12px;
  height: 100%;
}
.main-header .contact-info a i {
  display: inline-block;
  transition: transform 0.3s ease;
  font-weight: 900 !important;
}
.main-header .contact-info a:hover i.bi-arrow-up-right {
  transform: translate(4px, -4px);
  font-weight: bolder;
}
.main-header .contact-info .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 7px;
  padding: 5px;
}
.main-header .contact-info .info-box .icon {
  font-size: 21px;
  color: #fff;
  background-color: #fcaf17;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-header .contact-info .info-box p {
  margin-bottom: 5px;
  font-size: 18px;
  color: #fcaf17;
  font-family: "Althy";
}
.main-header .contact-info .info-box h6 {
  margin: 2px 0 0;
  font-size: 14.6px;
}
.main-header .contact-info .info-box .text-content {
  line-height: 1.5;
  font-weight: 500;
}
.main-header .contact-info .social {
  margin-top: 20px;
  display: flex;
  gap: 13px;
}
.main-header .contact-info .social .social-icon a {
  color: #fff;
  background-color: #fcaf17;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.main-header .contact-info .social .social-icon a:hover {
  transform: scale(1.1);
  background-color: #FFF4DF;
}
@media (max-width: 776px) {
  .main-header .contact-info .social {
    justify-content: center;
    gap: 7px;
  }
  .main-header .contact-info .social .social-icon {
    height: 40px;
    font-size: 18px;
  }
}
.main-header .contact-info .address-btn {
  background-color: #FFF4DF;
  text-decoration: none;
  padding: 8px 8px;
  color: #553421;
  gap: 5px;
  display: inline-flex;
  font-size: 14px;
  margin-top: -30px;
}
.main-header .contact-info .address-btn .btn-icon {
  height: auto;
  align-items: center;
  color: #fcaf17 !important;
  font-weight: 600;
  border: none !important;
  justify-content: center;
}
.main-header .contact-info .address-btn ul li a {
  color: #1a1a1a;
}
@media (max-width: 991px) {
  .main-header #megaRight {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 80%;
    background: #faecdd;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .main-header #megaRight.active {
    display: block;
  }
  .main-header #megaLeft.hide {
    display: none;
  }
  .main-header .mobile-back {
    margin-bottom: 15px;
  }
  .main-header .mobile-back button {
    border: none;
    background: none;
    color: #e95e1e;
    font-size: 14px;
  }
}

.main-header.home-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
}
.main-header.home-header .navbar,
.main-header.home-header .main-nav {
  background: transparent !important;
}

.heroSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
  padding: 10% 0 60%;
  display: flex;
  align-items: center;
}
.heroSwiper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}

.hero-features {
  position: relative;
  z-index: 5;
}

.footer-section {
  position: relative;
  background: #F7F7F7;
  color: #553421;
  height: 100%;
  font-family: "Manrope", sans-serif;
}
.footer-section p {
  color: #696969;
  line-height: 21px;
}
.footer-section .footer-bg {
  width: 100%;
}
.footer-section .footer-bg img {
  width: 100%;
  height: 100%;
}
.footer-section h6 {
  color: #553421;
  font-family: "Althy";
  font-size: 18px;
  text-transform: uppercase !important;
}
.footer-section a i {
  display: inline-block;
  transition: transform 0.3s ease;
  font-weight: 900 !important;
}
.footer-section a:hover i {
  transform: translate(4px, -4px);
  font-weight: bolder;
}
.footer-section .address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-section .address-item > i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 700;
  border: 1px solid #fcaf17;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  -webkit-text-stroke: 0.4px currentColor;
}
.footer-section .address-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Manrope", sans-serif;
}
.footer-section .address-content p {
  color: #434343;
  font-weight: 400;
}
.footer-section .address-content .address-btn {
  background-color: #FFF4DF;
  text-decoration: none;
  padding: 8px 8px;
  color: #553421;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.footer-section .address-content .address-btn .btn-icon {
  height: auto;
  align-items: center;
  color: #fcaf17 !important;
  font-weight: 600;
  border: none !important;
  justify-content: center;
}
.footer-section .address-content .address-btn ul li a {
  color: #1a1a1a;
}
.footer-section .copyright p {
  color: #1a1a1a;
  font-family: "Manrope";
  letter-spacing: normal;
  font-size: 16px;
}
.footer-section .footer-link {
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 400;
  letter-spacing: 0.6px;
  font-family: "Manrope", sans-serif;
}
.footer-section .footer-link:hover {
  color: #fcaf17;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  color: #fff !important;
  position: relative;
  background-color: #fcaf17;
  border: 1px solid #fcaf17;
  cursor: pointer;
}
.footer-section ul .social-icon a {
  text-decoration: none;
}
.footer-section ul .social-icon a i {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  color: #fff;
  height: 100%;
  width: 100%;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  padding: 6px;
}
.footer-section ul .social-icon:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  animation: ripple 0.5s ease-out forwards;
}
@keyframes ripple {
  0% {
    transform: scale(0.7);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.footer-section .form-control.custom-input {
  height: 45px;
  border: none;
  color: #553421 !important;
  background-color: rgba(162, 103, 73, 0.062745098);
  border-radius: 2px;
}
.footer-section .form-control.custom-input::-moz-placeholder {
  color: #828282;
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
}
.footer-section .form-control.custom-input::placeholder {
  color: #828282;
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
}
.footer-section .btn-outline-light {
  border-radius: 6px;
}
.footer-section .footerfloat {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
}
.footer-section .footerfloat .info {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: row;
  gap: 30px;
  background: #f2fcdd;
  color: #fcaf17;
  padding: 20px 50px;
  border-radius: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.footer-section .footerfloat .info:hover {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.footer-section .footerfloat .info:hover a {
  color: #fff;
}
.footer-section .footerfloat .info:hover svg path {
  fill: #fff;
  stroke: #fff;
}
.footer-section .footerfloat .info a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.footer-section .footerfloat .info a:hover {
  color: #fcaf17;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) and (max-width: 1400px) {
  .footer-section .footerfloat {
    width: 80%;
  }
  .footer-section .footerfloat .info {
    padding-inline: 20px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .footer-section .footerfloat {
    width: auto;
  }
  .footer-section .footerfloat .info {
    padding-inline: 20px;
  }
  .footer-section .footerfloat .info .box:nth-child(1) {
    width: 200px;
  }
  .footer-section .footerfloat .info .box:nth-child(3) {
    word-break: break-word;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .footer-section .footerfloat {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
    width: 70%;
  }
  .footer-section .footerfloat .info {
    padding-inline: 20px;
  }
  .footer-section .footerfloat .info .box:nth-child(1) {
    width: 200px;
  }
  .footer-section .footerfloat .info .box:nth-child(3) {
    word-break: break-word;
  }
}
@media (max-width: 575px) and (max-width: 576px) {
  .footer-section .footerfloat {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
    width: 90% !important;
  }
}

@media (min-width: 995px) and (max-width: 3676px) {
  .fotter-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 376px) and (max-width: 994px) {
  .footer-section .fotter-icons {
    display: flex !important;
    flex-direction: wrap !important;
    align-items: center;
  }
}
.common-hero {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  margin: 0;
}
.common-hero .hotspot {
  position: absolute;
  z-index: 5;
}
.common-hero .hotspot__circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
}
.common-hero .hotspot__circle::after {
  content: "";
  position: absolute;
}
.common-hero .hotspot--left {
  left: 40%;
  bottom: -32%;
  position: relative;
}
.common-hero .hotspot--left .hotspot__circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2 !important;
  font-family: "Althy";
  font-size: 1.3rem !important;
  font-weight: 300;
  line-height: 1.5rem;
}
.common-hero .hotspot--left .hotspot__circle::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 85px;
  top: 30%;
  left: 90%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='118' height='97' viewBox='0 0 118 97'%3E%3Cpath d='M2 95H103C110.18 95 116 89.1797 116 82V2' fill='none' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  font-family: "Althy";
  font-weight: 800;
  z-index: 1;
}
.common-hero .hotspot--right {
  left: 20%;
  bottom: -47%;
  position: relative;
}
.common-hero .hotspot--right .hotspot__circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2 !important;
  font-family: "Althy";
  font-size: 1.3rem !important;
  font-weight: 300;
  line-height: 1.5rem;
  color: #fff;
}
.common-hero .hotspot--right .hotspot__circle::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 85px;
  top: 70%;
  left: 90%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='118' height='10' viewBox='0 0 118 10'%3E%3Cpath d='M2 5H116' fill='none' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 1.3rem !important;
  z-index: 1;
}
.common-hero .hotspot--bottom {
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}
.common-hero .hotspot--bottom .hotspot__circle::after {
  width: 2px;
  height: 80px;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.common-hero .hotspot--top {
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
}
.common-hero .hotspot--top .hotspot__circle::after {
  width: 2px;
  height: 80px;
  top: 100%;
  left: 20%;
  transform: translateX(-50%);
}
.common-hero .hero-bg-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10% 0 60%;
}
.common-hero .hero-bg-slider,
.common-hero .hero-bg-slider .swiper-wrapper,
.common-hero .hero-bg-slider .swiper-slide {
  position: relative;
  z-index: 1 !important;
}
.common-hero .hero-img1 {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.common-hero .hero-img2 {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.common-hero .hero-bg-slider {
  width: 100%;
}
.common-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.common-hero .container {
  position: absolute;
  inset: 0;
  z-index: 10;
  height: 100%;
  pointer-events: none;
}
.common-hero .container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.common-hero .hero-content {
  position: relative !important;
  z-index: 99999 !important;
  align-items: start;
  isolation: isolate;
  transform: translateY(-20rem);
  pointer-events: auto;
}
.common-hero .hero-text {
  font-family: "Althy", sans-serif;
  font-size: 3.6rem;
  line-height: 1.2;
  color: #000;
}
.common-hero .new-style {
  color: #fcaf17;
  font-family: "Hurricane";
}
.common-hero .hero-features {
  position: absolute;
  bottom: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 50px;
  z-index: 3;
  width: 100%;
  pointer-events: auto;
}
.common-hero .hero-features .featureSwiper {
  overflow: hidden;
}
.common-hero .hero-features .swiper-wrapper {
  align-items: center;
}
.common-hero .hero-features .swiper-slide {
  display: flex;
  justify-content: center;
}
.common-hero .hero-features .feature-box {
  width: 90%;
  text-align: center;
  border: 1px solid #fff5e1;
  padding: 6px;
  border-radius: 14px;
  background: #fffdf9;
}
.common-hero .hero-features .feature-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.common-hero .hero-features .feature-prev,
.common-hero .hero-features .feature-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 5;
  pointer-events: auto;
}
.common-hero .hero-features .feature-prev {
  left: 10px;
  color: #fcaf17;
}
.common-hero .hero-features .feature-next {
  right: 10px;
  color: #fcaf17;
}
@media (max-width: 1500px) {
  .common-hero .hero-img1 {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .common-hero .hero-img2 {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .common-hero .hotspot__circle {
    position: relative;
  }
  .common-hero .hotspot--left {
    left: 50% !important;
    position: absolute;
    bottom: 70%;
    transform: translate(-50%, 2rem);
  }
  .common-hero .hotspot--left .hotspot__circle::after {
    top: 40%;
    left: 90%;
    z-index: 1;
  }
  .common-hero .hotspot--right {
    left: 20% !important;
    position: absolute;
    bottom: -47%;
    transform: translate(-50%, 2rem);
  }
  .common-hero .hotspot--right .hotspot__circle::after {
    top: 40%;
    left: 90%;
    z-index: 1;
  }
  .common-hero .hero-bg-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10% 0 70%;
  }
  .common-hero .hero-text {
    font-size: 4rem !important;
  }
}
@media (min-width: 1381px) and (max-width: 1500px) {
  .common-hero .hero-img2 {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom center;
       object-position: bottom center;
  }
  .common-hero .hero-bg-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10% 0 75%;
  }
  .common-hero .hero-content {
    transform: translateY(-13rem) !important;
  }
  .common-hero .hero-img2-content .hero-content {
    transform: translateY(-8rem) !important;
  }
  .common-hero .hero-text {
    font-size: 4rem !important;
  }
  .common-hero .hero-features {
    position: absolute;
    bottom: 20px !important;
  }
  .common-hero .hotspot__circle {
    position: relative;
  }
  .common-hero .hotspot--left {
    left: 50% !important;
    position: absolute;
    bottom: 55%;
    transform: translate(-50%, 2rem);
  }
  .common-hero .hotspot--left .hotspot__circle::after {
    top: 40%;
    left: 90%;
    z-index: 1;
  }
  .common-hero .hotspot--right {
    left: 30% !important;
    position: absolute;
    bottom: 42%;
    transform: translate(-50%, 2rem);
  }
  .common-hero .hotspot--right .hotspot__circle::after {
    top: 70%;
    left: 90%;
    z-index: 1;
  }
}
@media (min-width: 1299px) and (max-width: 1380px) {
  .common-hero .hero-img2 {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom center;
       object-position: bottom center;
  }
  .common-hero .hero-bg-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10% 0 70%;
  }
  .common-hero .hero-content {
    transform: translateY(-13rem) !important;
  }
  .common-hero .hero-img2-content .hero-content {
    transform: translateY(-8rem) !important;
  }
  .common-hero .hero-text {
    font-size: 3rem !important;
  }
  .common-hero .hero-features {
    position: absolute;
    bottom: 20px !important;
  }
  .common-hero .hotspot__circle {
    position: relative;
  }
  .common-hero .hotspot--left {
    left: 50% !important;
    position: absolute;
    bottom: 55%;
    transform: translate(-50%, 2rem);
  }
  .common-hero .hotspot--left .hotspot__circle::after {
    top: 40%;
    left: 90%;
    z-index: 1;
  }
  .common-hero .hotspot--right {
    left: 30% !important;
    position: absolute;
    bottom: 41%;
    transform: translate(-50%, 2rem);
  }
  .common-hero .hotspot--right .hotspot__circle::after {
    top: 70%;
    left: 90%;
    z-index: 1;
  }
}
@media (min-width: 993px) and (max-width: 1298px) {
  .common-hero .hero-text {
    font-size: 3rem !important;
  }
  .common-hero .hero-content {
    transform: translateY(-9rem);
  }
  .common-hero .hero-features {
    position: absolute;
    bottom: 10px !important;
  }
  .common-hero .hotspot__circle {
    position: relative;
  }
  .common-hero .hotspot--left {
    left: 50% !important;
    position: absolute;
    bottom: 50%;
    transform: translate(-50%, 2rem);
  }
  .common-hero .hotspot--left .hotspot__circle::after {
    top: 40%;
    left: 90%;
    z-index: 1;
  }
  .common-hero .hotspot--right {
    left: 30% !important;
    position: absolute;
    bottom: 42%;
    transform: translate(-50%, 2rem);
  }
  .common-hero .hotspot--right .hotspot__circle::after {
    top: 80%;
    left: 90%;
    z-index: 1;
  }
}
@media (max-width: 992px) {
  .common-hero {
    padding: 0;
  }
  .common-hero .container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .common-hero .hero-content {
    transform: translateY(-1rem);
  }
  .common-hero .hero-text {
    font-size: 3rem !important;
  }
  .common-hero .hero-bg-slider .swiper-slide {
    height: 60vh;
    display: flex;
    align-items: center;
  }
  .common-hero .hero-features,
  .common-hero .hotspot {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .common-hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .common-hero .hero-content {
    transform: translateY(2rem);
  }
  .common-hero .hero-text {
    font-size: 2rem !important;
  }
  .common-hero .hero-bg-slider .swiper-slide {
    height: 50vh;
    display: flex;
    align-items: center;
  }
}

.plywood-section {
  position: relative;
  background-image: url("../img/pages/menufrc1.jpg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 380px 95%;
}
.plywood-section .image-stack {
  position: relative;
}
.plywood-section .image-stack .frame-img {
  position: relative;
  z-index: 2;
}
.plywood-section p {
  color: #5c5c5c;
}
.plywood-section .image-stack::before {
  content: "";
  position: absolute;
  left: -300px;
  top: 190px;
  width: 400px;
  height: 4px;
  background: #fff;
  box-shadow: 0 30px 0 #fff, 0 60px 0 #fff;
}
@media (max-width: 1024px) {
  .plywood-section .image-stack::before {
    left: -40px;
    width: 140px;
  }
}
@media (min-width: 1399px) and (max-width: 1500px) {
  .plywood-section .image-stack::before {
    left: -90px;
    width: 240px;
  }
  .plywood-section .frame-img {
    left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1398px) {
  .plywood-section .image-stack::before {
    left: -130px;
    width: 280px;
  }
}
@media (max-width: 968px) {
  .plywood-section {
    background-image: none;
  }
  .plywood-section .image-stack {
    justify-content: center;
  }
  .plywood-section .image-stack::before {
    display: none;
  }
}
.plywood-section .stats-section {
  display: flex;
  justify-content: center;
}
.plywood-section .stats-section .stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 10px;
  border: 1px solid #ffcf71;
  border-radius: 16px;
  background: rgba(252, 175, 23, 0.06);
  max-width: 700px;
  width: 100%;
}
.plywood-section .stats-section .stats-wrapper .stat-item {
  text-align: center;
  flex: 1;
  position: relative;
}
.plywood-section .stats-section .stats-wrapper .stat-item h2 {
  font-size: 32px;
  font-weight: 400;
  color: #001641;
  margin-bottom: 5px;
  font-family: "Althy";
}
.plywood-section .stats-section .stats-wrapper .stat-item h2::after {
  content: " +";
}
.plywood-section .stats-section .stats-wrapper .stat-item p {
  font-size: 14px;
  color: #001641;
  margin: 0;
}
.plywood-section .stats-section .stats-wrapper .stat-item {
  /* 🔥 Divider using pseudo element */
}
.plywood-section .stats-section .stats-wrapper .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #e5c27a;
}
.plywood-section .stats-section {
  /* 📱 Tablet & Mobile */
}
@media (max-width: 768px) {
  .plywood-section .stats-section .stats-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .plywood-section .stats-section .stats-wrapper .stat-item {
    width: 100%;
  }
  .plywood-section .stats-section .stats-wrapper .stat-item:not(:last-child)::after {
    top: auto;
    bottom: -10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
  }
}

.quality .quality-card {
  position: relative;
  overflow: hidden;
  height: 600px;
}
.quality .quality-card::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 350px;
  height: 350px;
  background: url("../img/pages/circle2.png") no-repeat center/contain;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.5;
}
.quality .quality-card::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -30px;
  width: 250px;
  height: 250px;
  background: url("../img/pages/circle3.png") no-repeat center/contain;
  z-index: 1;
  opacity: 0.8;
}
.quality .quality-card .card-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.quality .quality-card {
  z-index: 1;
}
.quality .quality-card .card-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quality .quality-card .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.084);
}
.quality .quality-card .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.quality .quality-card .text-box {
  position: relative;
  z-index: 2;
}
.quality .quality-card .text-box h2 {
  font-size: 3rem;
  font-weight: 300;
  font-family: "Althy";
  margin-bottom: 15px;
}
.quality .quality-card .text-box p {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.quality .quality-card .text-box::before {
  content: "";
  position: absolute;
  width: 960px;
  height: 960px;
  background: radial-gradient(43.6% 43.57% at 50.45% 46.79%, rgba(26, 9, 0, 0.47) 0%, rgba(0, 0, 0, 0.01) 100%);
  background-size: contain;
  left: -90px;
  top: -190px;
  z-index: -1;
}

@media (max-width: 768px) {
  .quality .quality-card .text-box ::after {
    display: none !important;
  }
  .quality .quality-card .text-box::before {
    width: 460px !important;
    height: 460px !important;
  }
  h2 {
    font-size: 32px !important;
  }
}
.collections-section {
  position: relative;
  background: #000b20;
  padding: 80px 0;
  color: white;
  overflow: hidden !important;
}
.collections-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 270px;
  height: 200px;
  background: url("../img/icons/wood-top.png") no-repeat;
  background-size: contain;
  z-index: 2;
}
.collections-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  width: 270px;
  height: 200px;
  background: url("../img/icons/wood-top.png") no-repeat;
  background-size: contain;
  z-index: 2;
  transform: scaleX(-1);
}
.collections-section .collections-tabs {
  justify-content: center;
}
.collections-section .collections-tabs .nav-link {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 20px;
  padding: 0 20px 10px;
  font-weight: 300;
  font-family: "Althy", sans-serif;
  text-align: center;
}
.collections-section .collections-tabs .nav-link.active {
  color: #f6b42d;
  border-bottom: 2px solid #f6b42d;
}
.collections-section .collectSwiper .swiper-wrapper {
  overflow: visible !important;
}
.collections-section .collectSwiper {
  overflow: visible !important;
}
.collections-section .collectSwiper .swiper-slide {
  width: auto;
  transition: all 0.4s ease;
  cursor: pointer;
}
.collections-section .cardbox {
  position: relative;
  width: 10rem;
  height: 25rem;
  overflow: visible !important;
  border: 1.7px solid white;
  transition: all 0.4s ease;
}
.collections-section .cardbox img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.4s ease;
}
.collections-section .cardbox .img-default {
  z-index: 1;
}
.collections-section .cardbox .img-active {
  opacity: 0;
  z-index: 2;
}
.collections-section .cardbox .card-text {
  color: #fff;
  font-size: 28px;
  font-family: "Althy", sans-serif;
  transition: all 0.4s ease;
  line-height: 1.3;
  position: relative;
  z-index: 5;
}
.collections-section .swiper-slide-active .cardbox {
  width: 48rem;
  transform: scale(1);
  overflow: visible;
  transition: transform 0.4s ease;
}
.collections-section .swiper-slide-active:hover {
  transform: scale(1.03);
}
.collections-section .swiper-slide-active .img-active {
  opacity: 1;
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.collections-section .swiper-slide-active .gradientblogbg {
  background: linear-gradient(to top, rgb(48, 34, 22) 0%, rgba(48, 34, 22, 0.568) 40%, transparent 100%);
  min-height: 70%;
}
.collections-section .swiper-slide-active .img-default {
  opacity: 1;
  z-index: 3;
  width: 7.6rem;
  height: 25rem;
  top: -20px;
  left: 0px;
  transform: rotate(-16deg);
  border: 1.8px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.collections-section .swiper-slide-active .card-text {
  left: 50%;
  transform: translateX(50%);
  writing-mode: horizontal-tb;
  text-align: center;
  z-index: 4;
}
.collections-section .swiper-slide:not(.swiper-slide-active) .card-text {
  top: 50%;
  left: 70%;
  transform: translateY(-10%) rotate(180deg);
  writing-mode: vertical-rl;
  text-align: center;
  z-index: 1;
}

@media (max-width: 768px) {
  .collections-section::before {
    display: none;
  }
  .collections-section::after {
    display: none;
  }
  .collections-tabs .nav-link {
    font-size: 16px !important;
  }
}
@media (max-width: 768px) {
  .collections-section {
    padding: 40px 0;
  }
  .collections-section::before, .collections-section::after {
    display: none;
  }
  .collections-section .collections-tabs .nav-link {
    font-size: 16px !important;
    padding: 0 10px 8px;
  }
  .collections-section .collectSwiper .swiper-slide-active .cardbox {
    width: 20rem;
  }
  .collections-section .collectSwiper .swiper-slide-active .img-default {
    width: 5rem;
    height: 15rem;
    top: -15px;
    left: -10px;
    transform: rotate(-12deg);
  }
  .collections-section .collectSwiper .swiper-slide-active .card-text {
    font-size: 16px;
    bottom: 10px;
  }
  .collections-section .collectSwiper .swiper-slide:not(.swiper-slide-active) .cardbox {
    transform: scale(0.85);
  }
  .collections-section .collectSwiper .swiper-slide:not(.swiper-slide-active) .card-text {
    font-size: 14px;
    top: 50%;
    left: 20%;
    transform: translateY(-40%) rotate(180deg);
  }
}
@media (max-width: 480px) {
  .collections-section {
    padding: 20px 0;
  }
  .collections-section .collections-tabs .nav-link {
    font-size: 14px !important;
    padding: 0 6px 6px;
  }
  .collections-section .collectSwiper .swiper-slide-active .cardbox {
    width: 16rem;
  }
  .collections-section .collectSwiper .swiper-slide-active .img-default {
    width: 4rem;
    height: 12rem;
    top: -10px;
    left: -8px;
    transform: rotate(-10deg);
  }
  .collections-section .collectSwiper .swiper-slide-active .card-text {
    font-size: 14px;
    bottom: 8px;
    text-align: center;
    z-index: 4;
    font-size: 12px;
    top: 50%;
    left: 15%;
    transform: translateY(-40%) rotate(0deg);
  }
  .collections-section .collectSwiper .swiper-slide:not(.swiper-slide-active) .cardbox {
    transform: scale(0.8);
  }
  .collections-section .collectSwiper .swiper-slide:not(.swiper-slide-active) .card-text {
    transform: translateX(50%);
    text-align: center;
    z-index: 4;
    font-size: 12px;
    top: 50%;
    left: 15%;
    transform: translateY(-40%) rotate(180deg);
  }
}
.marquee {
  background: #f2ebdb;
  overflow: hidden;
  margin: 0;
}
.marquee .swiper-wrapper {
  transition-timing-function: linear !important;
}
.marquee .dot {
  color: #f6b42d;
  margin-right: 6px;
}
.marquee .swiper-slide {
  width: auto !important;
  white-space: nowrap;
  font-size: 30px;
  font-weight: 300;
  font-family: "Althy";
  color: #1f2d5a;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.blogs .row {
  align-items: stretch;
}
.blogs .card-left {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  cursor: pointer;
}
.blogs .card-left .card-thumb {
  width: 100%;
  height: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blogs .card-left .impact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.1) 65%, transparent 100%);
  color: #fff;
  z-index: 2;
}
.blogs .card-left .impact-overlay .date {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.85;
}
.blogs .card-left .impact-overlay h3 {
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  line-height: 1.2;
  font-family: "Althy", sans-serif;
  margin-bottom: 12px;
}
.blogs .card-left .impact-overlay p {
  font-size: 15px;
  max-width: 80%;
  font-weight: 200;
  line-height: 1.6;
  margin-bottom: 0;
}
.blogs .card-left:hover .card-thumb {
  transform: scale(1.06);
}
.blogs .divider {
  width: 90%;
  height: 3px;
  margin-left: 14px;
  background-color: #ddd9d4;
}
.blogs .card-right {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex: 1;
  overflow: hidden;
  border-radius: 18px;
}
.blogs .card-right .card-thumb {
  width: 200px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 18px;
}
.blogs .card-right .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blogs .card-right h5 {
  margin-bottom: 0;
}
.blogs .card-right h5 a {
  font-family: "Althy", sans-serif;
  text-decoration: none;
  font-weight: 300;
  line-height: 1.2;
  color: #000;
  transition: color 0.3s ease;
}
.blogs .card-right .top-headline {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.7;
}
.blogs .card-right:hover .card-thumb {
  transform: scale(1.06);
}
.blogs .card-right:hover h5 a {
  color: #fcaf17;
}

@media (max-width: 768px) {
  .card-left .card-thumb {
    width: 100% !important;
    height: 100% !important;
  }
  .card-right {
    flex-direction: column !important;
  }
  .card-right .card-thumb {
    width: 100% !important;
    height: 100% !important;
  }
}
.icons {
  background-color: #001641;
  justify-content: center;
}
.icons .stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  max-width: 100%;
  width: 100%;
  color: #fff;
}
.icons .stats-wrapper .stat-item {
  text-align: center;
  position: relative;
}
.icons .stats-wrapper .stat-item h5 {
  font-size: 20px;
  font-weight: 300;
  color: #E7DACA;
  font-family: "Althy";
}
.icons .stats-wrapper .stat-item p {
  font-size: 15px;
  margin: 0;
  font-weight: 300;
  color: #E7DACA;
  font-family: "Manrope", sans-serif;
}
.icons .stats-wrapper .stat-item {
  /* ✅ Divider */
}
.icons .stats-wrapper .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translate(40%, -50%);
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2117647059);
}
@media (max-width: 992px) {
  .icons .stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 👈 2 columns */
    gap: 30px;
    padding: 20px;
  }
  .icons .stat-item::after {
    content: none !important;
  }
}
@media (max-width: 568px) {
  .icons .stats-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* 👈 2 columns */
    gap: 30px;
    padding: 20px;
  }
}

.partner {
  position: relative;
  min-height: 600px;
}
.partner .swiper-slide {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
}
.partner .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.partner .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(4px);
  transform: scale(1.08);
  z-index: 0;
}
.partner .hero-img {
  transform: scale(1.2);
  transition: transform 6s ease;
}
.partner .swiper-slide-active .hero-img {
  transform: scale(1);
}
.partner .partner-image-box {
  position: relative;
  border: 4px solid #fff;
  overflow: visible;
  z-index: 2;
}
.partner .partner-image-box::before, .partner .partner-image-box::after {
  content: "";
  position: absolute;
  left: 30%;
  top: -10.625rem;
  transform: translateX(-50%);
  width: 3px;
  height: 167px;
  background: rgba(255, 255, 255, 0.3882352941);
  z-index: -1;
}
.partner .partner-image-box::after {
  top: auto;
  right: 30%;
  bottom: -10.625rem;
  left: auto;
}
.partner .partner-image-box img {
  width: 100%;
  display: block;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
.partner .container {
  position: relative;
  z-index: 2;
}
.partner .partner-image-box {
  border: 4px solid #fff;
}
.partner .partner-image-box img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
.partner .partner-text h2 {
  font-size: 3rem;
  font-family: "Althy";
  font-weight: 300;
  line-height: 1.2;
}
.partner .partner-text p {
  font-size: 16px;
  max-width: 500px;
  margin: 20px 0;
}
.partner .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

@media (max-width: 991px) {
  .partner .partner-content {
    text-align: center;
  }
  .partner .partner-text {
    padding-left: 0;
    margin-top: 30px;
  }
  .partner .partner-text h2 {
    font-size: 2rem;
  }
  .partner .partner-features {
    flex-wrap: wrap;
  }
  .partner .partner-features .feature-box {
    width: 50%;
  }
  .partner .partner-image-box::before {
    display: none;
  }
  .partner .partner-image-box::after {
    display: none;
  }
}
@media (max-width: 576px) {
  .partner .partner-features .feature-box {
    width: 100%;
  }
}
.testimonial-section {
  position: relative;
  background: #000b20;
  padding: 80px 0;
  color: white;
  overflow: hidden;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: url("../img/pages/test-img.jpg") center center/cover no-repeat;
  z-index: 1;
}
.testimonial-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: rgba(0, 0, 0, 0.822);
  z-index: 2;
}
.testimonial-section .testimonial-decor {
  position: absolute;
  top: 10px;
  right: -30px;
  width: 320px;
  height: 220px;
  background: url("../img/icons/wood 3.png ") no-repeat;
  background-size: contain;
  z-index: 2;
  opacity: 0.4;
}
.testimonial-section .testimonial-content {
  position: relative;
  height: 550px;
  display: flex;
  justify-content: center;
}
.testimonial-section .testimonial-content .dotted-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.35) 2px, transparent 2px);
  background-size: 12px 28px;
  background-repeat: repeat-y;
}
.testimonial-section .hero-text {
  font-family: "Althy", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  color: #fff;
}
.testimonial-section .new-style {
  position: relative;
  display: inline-block;
  color: #fcaf17;
  font-family: "Hurricane";
}
.testimonial-section .new-style svg {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: auto;
}
.testimonial-section .container {
  position: relative;
  z-index: 3;
}
.testimonial-section .user-map {
  position: relative;
  min-height: 550px;
}
.testimonial-section .user-map .user-dot {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #f6b42d;
  overflow: hidden;
  z-index: 2;
  transition: 0.3s;
}
.testimonial-section .user-map .user-dot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-section .user-map .user-dot.active {
  transform: scale(1.1);
  box-shadow: 0 0 20px #f6b42d;
}
.testimonial-section .user-map .user-dot:nth-child(1) {
  top: 40px;
  left: 80px;
}
.testimonial-section .user-map .user-dot:nth-child(2) {
  top: 140px;
  left: 250px;
}
.testimonial-section .user-map .user-dot:nth-child(3) {
  top: 200px;
  left: 100px;
}
.testimonial-section .user-map .user-dot:nth-child(4) {
  top: 320px;
  left: 280px;
}
.testimonial-section .testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}
.testimonial-section .testimonial-card .test-card {
  background: #000e2b;
  margin: 10px;
  padding: 20px;
}
.testimonial-section .testimonial-card .user-info img {
  height: 100px;
}
.testimonial-section .testimonial-card h2 {
  font-size: 2.5rem;
  font-family: "Althy", sans-serif;
}
.testimonial-section .testimonial-card p {
  margin: 25px 0;
  line-height: 1.8;
  font-weight: 300;
}
.testimonial-section .testimonial-card h5 {
  margin-bottom: 5px;
  font-family: "Althy", sans-serif;
}
.testimonial-section .testimonial-card span {
  color: #f6b42d;
}
.testimonial-section .swiper-pagination {
  margin-left: 50px;
}
.testimonial-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  border-radius: 0;
  opacity: 1;
  margin-left: 19px;
}
.testimonial-section .swiper-pagination-bullet-active {
  background: #f6b42d;
}

@media (max-width: 991px) {
  .testimonial-section::before, .testimonial-section::after {
    width: 100%;
  }
  .testimonial-section .user-map {
    min-height: auto;
    margin-bottom: 40px;
    text-align: center;
    padding: 20px 0;
  }
  .testimonial-section .user-map .user-dot {
    position: relative !important;
    display: inline-block;
    margin: 10px;
    left: auto !important;
    top: auto !important;
    width: 75px;
    height: 75px;
  }
  .testimonial-section .testimonial-card {
    padding: 30px;
  }
  .testimonial-section .testimonial-card h2 {
    font-size: 2rem;
  }
  .testimonial-section .testimonial-card p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .testimonial-section {
    padding: 50px 0;
  }
  .testimonial-section .testimonial-card {
    padding: 20px;
    margin-top: 10px;
  }
  .testimonial-section .testimonial-card .test-card {
    margin: 10px;
    padding: 20px;
  }
  .testimonial-section .testimonial-card h2 {
    font-size: 1.6rem;
  }
  .testimonial-section .testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
  }
  .testimonial-section .testimonial-card h5 {
    font-size: 16px;
  }
  .testimonial-section .user-map {
    margin-bottom: 5px;
  }
  .testimonial-section .user-map .user-dot {
    width: 65px;
    height: 65px;
  }
  .testimonial-section .hero-text {
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    text-align: center !important;
  }
  .testimonial-section .swiper-pagination {
    margin-left: 0px !important;
  }
}
.Precision {
  background: #f8f6f2;
}
.Precision .precision-tabs .nav-link {
  border: none;
  background: transparent;
  color: #333;
  padding: 0 20px 10px 0;
  font-weight: 500;
}
.Precision .precision-tabs .nav-link.active {
  color: #f6b42d;
  border-bottom: 2px solid #f6b42d;
}
.Precision p {
  color: #2e1c00;
  font-size: 16px;
}
.Precision ul {
  list-style: none;
  padding: 0;
}
.Precision ul li {
  margin-bottom: 12px;
  position: relative;
  color: #2e1c00;
}
.Precision .precision-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.Precision .precision-image-wrap .main-img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}
.Precision .precision-image-wrap .wood {
  position: absolute;
  width: 120px;
  height: 500px;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.Precision .precision-image-wrap .wood-top {
  left: 10%;
  top: -7%;
}
.Precision .precision-image-wrap .wood-bottom {
  right: 10%;
  top: -7%;
}
@media (min-width: 996px) and (max-width: 1392px) {
  .Precision .precision-image-wrap .wood {
    width: 90px;
    height: 510px;
  }
  .Precision .precision-image-wrap .wood-top {
    left: 12%;
  }
  .Precision .precision-image-wrap .wood-bottom {
    right: 12%;
  }
}
@media (min-width: 768px) and (max-width: 995px) {
  .Precision .precision-image-wrap .wood {
    width: 90px;
    height: 450px;
  }
  .Precision .precision-image-wrap .wood-top {
    left: 12%;
  }
  .Precision .precision-image-wrap .wood-bottom {
    right: 12%;
  }
}
@media (min-width: 368px) and (max-width: 767px) {
  .Precision .precision-image-wrap .wood {
    width: 60px;
    height: 300px;
  }
  .Precision .precision-image-wrap .wood-top {
    left: 15%;
  }
  .Precision .precision-image-wrap .wood-bottom {
    right: 15%;
  }
  .Precision .precision-image-wrap .main-img {
    border-radius: 14px;
  }
}
@media (max-width: 375px) {
  .Precision .precision-image-wrap .wood {
    width: 60px;
    height: 250px;
  }
  .Precision .precision-image-wrap .wood-top {
    left: 15%;
  }
  .Precision .precision-image-wrap .wood-bottom {
    right: 15%;
  }
  .Precision .precision-image-wrap .main-img {
    border-radius: 14px;
  }
}

.video {
  width: 100%;
}
.video video {
  width: 100%;
  height: 90vh;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 576px) {
  .video {
    width: 100%;
  }
  .video video {
    width: 100%;
    height: 40vh;
  }
}
@media (max-width: 776px) {
  .video {
    width: 100%;
  }
  .video video {
    width: 100%;
    height: 50vh;
  }
}
.about-hero {
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-hero h1 {
  font-family: "Althy";
}
.about-hero a {
  text-decoration: none;
  color: #fff;
}
.about-hero .overlay-about {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.4%, rgba(0, 0, 0, 0.859) 100%);
}

.welcome-atut p {
  color: #5c5c5c;
}
.welcome-atut .card-data {
  background: #bf8357;
  width: 180px;
  border-radius: 16px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.welcome-atut .card-data .shape {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  top: 20px;
  left: 50px;
}
.welcome-atut .card-data .content {
  z-index: 2;
  color: #fff;
}
.welcome-atut .card-data h2 {
  font-family: "Althy";
}
@media (max-width: 578px) {
  .welcome-atut .card-data {
    height: 6rem;
  }
}
.welcome-atut .shine-img {
  overflow: hidden;
}
.welcome-atut .shine-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.welcome-atut .shine-img:hover img {
  transform: scale(1.1);
}
.welcome-atut .stats-section {
  display: flex;
  justify-content: center;
}
.welcome-atut .stats-section .stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 10px;
  border: 1px solid #ffcf71;
  border-radius: 16px;
  background: rgba(252, 175, 23, 0.06);
  max-width: 700px;
  width: 100%;
}
.welcome-atut .stats-section .stats-wrapper .stat-item {
  text-align: center;
  flex: 1;
  position: relative;
}
.welcome-atut .stats-section .stats-wrapper .stat-item h2 {
  font-size: 32px;
  font-weight: 400;
  color: #001641;
  margin-bottom: 5px;
  font-family: "Althy";
}
.welcome-atut .stats-section .stats-wrapper .stat-item h2::after {
  content: " +";
}
.welcome-atut .stats-section .stats-wrapper .stat-item p {
  font-size: 14px;
  color: #001641;
  margin: 0;
}
.welcome-atut .stats-section .stats-wrapper .stat-item {
  /*  Divider using pseudo element */
}
.welcome-atut .stats-section .stats-wrapper .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #e5c27a;
}
.welcome-atut .stats-section {
  /* 📱 Tablet & Mobile */
}
@media (max-width: 768px) {
  .welcome-atut .stats-section .stats-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .welcome-atut .stats-section .stats-wrapper .stat-item {
    width: 100%;
  }
  .welcome-atut .stats-section .stats-wrapper .stat-item:not(:last-child)::after {
    top: auto;
    bottom: -10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
  }
}

.choose .card-choose {
  background-color: #fffaf1;
  padding: 20px;
  height: 20rem;
  position: relative;
  transition: 0.3s ease;
}
.choose .card-choose h5 {
  font-family: "Althy";
}
.choose .card-choose p {
  color: #7b7b7b;
  font-family: "Manrope", sans-serif;
}
.choose .card-choose .side-svg {
  position: absolute;
  top: 20px;
  background-color: #ffefd3;
  padding: 10px;
  border-radius: 8px;
  transition: 0.3s ease;
}
.choose .card-choose .side-svg img {
  transition: 0.3s ease;
}
.choose .card-choose .content {
  position: absolute;
  bottom: 10px !important;
}
.choose .card-choose {
  /* 🔥 HOVER ON FULL CARD */
}
.choose .card-choose:hover .side-svg {
  background-color: #fcaf17;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}
.choose .card-choose:hover .side-svg img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

.founder {
  position: relative;
  background-color: #fffaf7;
  background-image: url("../img/pages/menufrc1.jpg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 380px 100%;
}
.founder span {
  background-color: #f9eace;
  font-size: 14px;
}
.founder .image-stack {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.founder .image-stack .frame-img {
  position: relative;
  z-index: 2;
  width: 100%;
}
.founder p {
  color: #5c5c5c;
}
.founder {
  /* 🔥 RIGHT SIDE LINES (mirror of left) */
}
.founder .image-stack::before {
  content: "";
  position: absolute;
  right: -300px;
  top: 190px;
  width: 400px;
  height: 4px;
  background: #fff;
  box-shadow: 0 30px 0 #fff, 0 60px 0 #fff;
}
@media (max-width: 1024px) {
  .founder .image-stack::before {
    right: -40px;
    width: 140px;
  }
}
@media (min-width: 1399px) and (max-width: 1500px) {
  .founder .image-stack::before {
    right: -90px;
    width: 240px;
  }
  .founder .frame-img {
    left: 30px;
    position: relative;
  }
}
@media (min-width: 1352px) and (max-width: 1398px) {
  .founder .image-stack::before {
    right: -130px;
    width: 280px;
  }
}
@media (min-width: 1200px) and (max-width: 1398px) {
  .founder .image-stack::before {
    right: -130px;
    width: 280px;
  }
}
@media (max-width: 989px) {
  .founder {
    background-image: none;
  }
  .founder .image-stack {
    justify-content: center;
  }
  .founder .image-stack::before {
    display: none;
  }
}

.contact-section {
  padding: 60px 0;
}
.contact-section .row {
  display: flex;
  align-items: stretch;
}
.contact-section .contact-form {
  background: #f9f9f9;
  padding: 30px;
  height: 100%;
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.contact-section .contact-form h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.contact-section .contact-form p {
  color: rgba(255, 255, 255, 0.8588235294);
}
.contact-section .contact-form label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}
.contact-section .contact-form .form-control {
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #f2f2f2;
}
.contact-section .contact-form .form-control::-moz-placeholder {
  color: #8C8C8C;
}
.contact-section .contact-form .form-control::placeholder {
  color: #8C8C8C;
}
.contact-section .contact-form .note {
  font-size: 12px;
  color: #8C8C8C;
  margin-top: 10px;
}
.contact-section .contact-form .btn-submit {
  margin-top: 15px;
  background: #f4a623;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  color: #000;
  font-weight: 500;
}
.contact-section .contact-form .btn-submit:hover {
  background: #e6951c;
}
.contact-section .contact-info {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  height: 100%;
}
.contact-section .contact-info .info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 7rem;
  background: #f2f2f2;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.contact-section .contact-info .info-box .icon {
  font-size: 24px;
  color: #f4a623;
}
.contact-section .contact-info .info-box p {
  margin-bottom: 5px;
  font-size: 15px;
}
.contact-section .contact-info .info-box h6 {
  margin: 2px 0 0;
  font-size: 14.6px;
  font-weight: 600;
}
.contact-section .contact-info hr {
  color: #979797;
}
.contact-section .contact-info .social {
  margin-top: 20px;
}
.contact-section .contact-info .social .social-icon {
  color: #fcaf17;
  font-size: 16px;
}

.location-section {
  padding: 60px 0;
  background: #fafafa;
}
.location-section h4 {
  font-size: 22px;
  font-weight: 600;
}
.location-section .location-card {
  padding: 20px;
}
.location-section .location-card .icon {
  font-size: 20px;
  color: #f4a623;
}
.location-section .location-card h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.location-section .location-card p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #777;
}
.location-section .location-card .address-btn {
  background-color: #FFF4DF;
  text-decoration: none;
  padding: 8px 8px;
  color: #553421;
  gap: 5px;
  display: inline-flex;
  font-size: 14px;
  margin-top: -30px;
}
.location-section .location-card .address-btn .btn-icon {
  height: auto;
  align-items: center;
  color: #fcaf17 !important;
  font-weight: 600;
  border: none !important;
  justify-content: center;
}
.location-section .location-card .address-btn ul li a {
  color: #1a1a1a;
}
@media (max-width: 978px) {
  .location-section .location-card .address-btn {
    margin-top: 0px !important;
  }
}

.productlist .collections-tabs {
  justify-content: center;
}
.productlist .collections-tabs .nav-link {
  border: none;
  background: transparent;
  color: #0C0C0C;
  font-size: 20px;
  padding: 0 20px 10px;
  font-weight: 300;
  font-family: "Althy", sans-serif;
  text-align: center;
}
.productlist .collections-tabs .nav-link.active {
  color: #f6b42d;
  border-bottom: 2px solid #f6b42d;
}
.productlist .product-quantity {
  color: #8C8C8C;
  font-size: 17px;
}
.productlist .productbox {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.productlist .productbox .section-title {
  font-weight: 500;
}
.productlist .productbox p {
  font-size: 13px;
  font-weight: 200;
}
.productlist .productbox::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.productlist .productbox img {
  transition: transform 0.4s ease;
}
.productlist .productbox .gradientbg {
  transition: all 0.4s ease;
  background: linear-gradient(357deg, #302216 2.22%, rgba(0, 0, 0, 0) 86.1%);
}
.productlist .productbox .arrow {
  opacity: 0;
  transition: all 0.3s ease;
}
.productlist .productbox .arrow .arrow-bg {
  width: 50px;
  height: 50px;
}
.productlist .productbox:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.productlist .productbox:hover img {
  transform: scale(1.08);
}
.productlist .productbox:hover .gradientbg {
  background: linear-gradient(357deg, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0) 90%);
}
.productlist .productbox:hover .arrow {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 978px) {
  .productlist .tab-content .section-title {
    text-align: left !important;
  }
}

.details-hero .breadcrumb {
  justify-content: flex-start;
  text-align: left;
  padding-left: 0;
}
.details-hero .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  color: #8C8C8C;
}
.details-hero .breadcrumb .breadcrumb-item.active {
  color: #8C8C8C;
}
.details-hero .breadcrumb .breadcrumb-item {
  /* separator */
}
.details-hero .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #8C8C8C;
  padding: 0 6px;
}
.details-hero a {
  color: #8C8C8C;
  font-weight: 500;
}

.product-content {
  padding-left: 40px;
}
.product-content .tags {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-content .tags::-webkit-scrollbar {
  display: none;
}
.product-content .tags span {
  flex: 0 0 auto;
  background: #eee;
  padding: 10px 13px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 0;
}
.product-content .title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
}
.product-content .desc {
  color: #8C8C8C;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
}
.product-content .features {
  list-style: none;
  padding: 0;
}
.product-content .features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
}
.product-content .features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M17.2666 2.72728C17.0248 2.72876 16.7933 2.83114 16.6229 3.01206C16.6229 3.01206 12.7947 7.04106 10.47 9.4909L8.83157 7.76321C8.47458 7.38773 7.89675 7.38773 7.53976 7.76321C7.18369 8.13966 7.18369 8.74898 7.53976 9.12543L9.82631 11.5366C10.1833 11.9121 10.7611 11.9121 11.1181 11.5366C13.2811 9.25651 17.9147 4.37428 17.9147 4.37428C18.2708 3.99783 18.2708 3.38851 17.9147 3.01206C17.7432 2.82999 17.51 2.7275 17.2666 2.72728Z' fill='%233E3E3E'/%3E%3Cpath d='M10.0019 1.81818C5.495 1.81822 1.81812 5.49107 1.81812 9.99803C1.81812 14.5049 5.495 18.1818 10.0019 18.1818C13.7004 18.1818 16.9475 15.6894 17.9047 12.1169C18.0898 11.4262 18.1817 10.7131 18.1818 9.99803C18.1818 9.43365 17.7246 8.97595 17.1603 8.9752C16.5959 8.97595 16.1388 9.43365 16.1388 9.99803C16.1388 10.5343 16.0659 11.0701 15.927 11.5881C15.2069 14.2758 12.7844 16.1388 10.0019 16.1389C6.60054 16.1388 3.86107 13.3994 3.86107 9.99803C3.86107 6.59663 6.60052 3.86115 10.0019 3.86115C10.5383 3.86119 11.07 3.93426 11.5881 4.07287C12.1337 4.21916 12.6946 3.89548 12.8409 3.34986C12.9876 2.80278 12.6639 2.2419 12.1183 2.09561C11.426 1.91016 10.7171 1.81822 10.0019 1.81818Z' fill='%233E3E3E'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.product-content .icon-boxes .icon-card {
  background: #f8f8f8;
  padding: 7px;
  border-radius: 10px;
  font-size: 12px;
  text-align: center;
  font-family: "Althy";
}
@media (max-width: 998px) {
  .product-content {
    padding: 0;
  }
  .product-content .section-title {
    text-align: start !important;
  }
}

.productlist .productdetails .nav-link {
  color: #8C8C8C !important;
}
.productlist .productdetails .nav-link.active {
  color: #000 !important;
  border-bottom: 2px solid #000 !important;
}
.productlist .productdetails .tab-content p {
  color: #8C8C8C;
  font-size: 14px;
}
.productlist .productdetails .tab-content ul li {
  color: #8C8C8C;
  font-size: 14px;
  line-height: 1.8;
}

.table {
  width: 100%;
  overflow-x: auto; /* horizontal scroll on small screens */
  border-radius: 12px;
  padding: 10px;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 600px; /* prevents table from breaking */
  border-collapse: separate !important;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
}

table thead th {
  font-weight: 600;
  padding: 14px 20px;
  border: none !important;
  color: #333;
  background-color: rgba(211, 211, 211, 0.795);
  white-space: nowrap;
}

table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

table tbody tr:last-child {
  border-bottom: none;
}

table tbody tr:nth-child(even) td {
  background: #fafafa !important;
}

table tbody td {
  padding: 14px 20px;
  border: none !important;
  color: #555;
  font-size: 14px;
  background: #fff;
  white-space: nowrap;
}

table tbody tr:hover td {
  background: #f1f1f1 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .table {
    padding: 0;
  }
  table {
    min-width: 500px;
  }
  table thead th,
  table tbody td {
    padding: 10px 12px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  table {
    min-width: 400px;
  }
  table thead th,
  table tbody td {
    padding: 8px 10px;
    font-size: 12px;
  }
}
.faq {
  background-color: #fcfcfc;
}
.faq p {
  color: #8C8C8C;
}
.faq .faq-section .faq-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  background: #f7f7f7;
  border-radius: 6px;
  overflow: hidden;
}
.faq .faq-section .faq-accordion .accordion-button {
  background: #f7f7f7;
  border: none;
  box-shadow: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  position: relative;
  display: flex;
  justify-content: space-between;
  font-family: "Althy";
}
.faq .faq-section .faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq .faq-section .faq-accordion .accordion-button::after {
  display: none;
}
.faq .faq-section .faq-accordion .accordion-button::before {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  transition: 0.3s;
}
.faq .faq-section .faq-accordion .accordion-button:not(.collapsed)::before {
  transform: rotate(45deg); /* 🔥 turns + into × */
}
.faq .faq-section .faq-accordion .accordion-body {
  padding: 15px 20px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #eee;
}
@media (max-width: 998px) {
  .faq .faq-section {
    padding: 4px;
  }
}

.myProjectSlider {
  width: 100%;
  height: 510px;
  position: relative;
}
.myProjectSlider .swiper-wrapper {
  height: 100%;
}
.myProjectSlider .swiper-slide {
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.myProjectSlider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  display: block;
}
.myProjectSlider .swiper-button-prev,
.myProjectSlider .swiper-button-next {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.myProjectSlider .swiper-button-prev::after,
.myProjectSlider .swiper-button-next::after {
  display: none;
}
.myProjectSlider .swiper-button-prev {
  left: 10px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
.myProjectSlider .swiper-button-next {
  right: 10px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
.myProjectSlider {
  /* Tablet */
}
@media (max-width: 991px) {
  .myProjectSlider {
    height: 400px;
  }
  .myProjectSlider .swiper-wrapper,
  .myProjectSlider .swiper-slide {
    height: 100%;
  }
  .myProjectSlider .swiper-button-prev,
  .myProjectSlider .swiper-button-next {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.myProjectSlider {
  /* Mobile */
}
@media (max-width: 576px) {
  .myProjectSlider {
    height: 220px;
  }
  .myProjectSlider .swiper-wrapper,
  .myProjectSlider .swiper-slide {
    height: 100%;
  }
  .myProjectSlider .swiper-button-prev,
  .myProjectSlider .swiper-button-next {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

.related-products .productlist .productbox p {
  font-weight: 200;
}
@media (max-width: 998px) {
  .related-products .section-title {
    align-items: start !important;
    text-align: start !important;
  }
}

.blog .productlist .productbox {
  height: 450px;
  position: relative;
}
.blog .productlist .productbox p {
  font-weight: 200;
}
.blog .productlist .productbox .arrow {
  opacity: 1 !important;
  transition: 0.3s ease;
  position: static !important;
  text-decoration: none;
}
.blog .productlist .productbox .arrow .arrow-bg {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.blog .productlist .productbox .arrow .arrow-bg i {
  color: #000;
  transition: 0.3s ease;
}
.blog .productlist .productbox .arrow .arrow-bg:hover {
  background-color: #fcaf17 !important;
  transform: translateY(-3px);
}
.blog .productlist .productbox .arrow .arrow-bg:hover i {
  color: #fff;
}
.blog .productlist .productbox .section-title {
  text-align: start !important;
  font-weight: 500;
}
@media (max-width: 998px) {
  .blog .productlist .productbox {
    height: 300px;
  }
}

.category-card .category-list li {
  margin-bottom: 12px;
}
.category-card .category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #999;
  font-size: 16px;
  transition: 0.3s;
}
.category-card .category-list li a .arrow {
  margin-right: 10px;
}
.category-card .category-list li a .count {
  color: #999;
}
.category-card .category-list li a:hover {
  color: #000;
}
.category-card .category-list li a:hover .arrow {
  transform: translateX(5px);
}

.recent-blogs .blog-item {
  align-items: center;
}
.recent-blogs .blog-item .blog-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
}
.recent-blogs .blog-item .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.recent-blogs .blog-item .blog-img:hover img {
  transform: scale(1.1);
}
.recent-blogs .blog-item .blog-content .blog-date {
  font-size: 14px;
  color: #fcaf17;
  font-weight: 400;
}
.recent-blogs .blog-item .blog-content .blog-title {
  font-size: 14px;
  color: #222;
  line-height: 1.3;
  font-style: normal;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.56px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.blog-btn .spinner-icon {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-btn .spinner-icon i {
  display: inline-block;
  transition: transform 0.3s ease;
}
.blog-btn:hover .spinner-icon i {
  animation: spin 0.4s linear forwards;
}

@keyframes spin {
  100% {
    transform: rotate(160deg);
  }
}
.blog-details span {
  font-size: 14px;
}
.blog-details .social-icon a {
  width: 36px;
  height: 36px;
  color: #001641;
  padding: 20px;
}
.blog-details .social-icon a:hover {
  transform: scale(1.1);
}
.blog-details .content .img-wrapper {
  height: 65vh;
  overflow: hidden;
}
.blog-details .content .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-details .content .img-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 778px) {
  .blog-details .content .img-wrapper {
    height: 30vh !important;
  }
}
.blog-details .content p {
  color: #8C8C8C;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
}
.blog-details .img-wrapper-short {
  overflow: hidden;
}
.blog-details .img-wrapper-short img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-details .img-wrapper-short:hover img {
  transform: scale(1.1);
}
@media (max-width: 578px) {
  .blog-details .section-title {
    text-align: left !important;
  }
}

.about-hero.terms {
  background-color: #fafafa;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero.terms .breadcrumb {
  justify-content: center;
  background: transparent;
  margin-bottom: 0;
}
.about-hero.terms .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  transition: 0.3s;
  color: #8C8C8C !important;
}
.about-hero.terms .breadcrumb .breadcrumb-item a:hover {
  opacity: 0.8;
}
.about-hero.terms .breadcrumb .breadcrumb-item.active {
  opacity: 1;
  color: #8C8C8C !important;
}
.about-hero.terms .breadcrumb .breadcrumb-item {
  /* 🔥 Slash separator */
}
.about-hero.terms .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #8C8C8C !important;
  padding: 0 8px;
}

.terms-conditions p {
  color: #8C8C8C;
  font-size: 14px;
}
.terms-conditions ul li {
  color: #8C8C8C;
  font-size: 14px;
}
@media (max-width: 978px) {
  .terms-conditions .section-title {
    text-align: left !important;
  }
}

/* Sticky Social Icons */
.sticky-social {
  position: fixed;
  right: 50px;
  bottom: 40px;
  z-index: 9999;
}
.sticky-social ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sticky-social .social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fcaf17;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-social .social-icon a i {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 578px) {
  .sticky-social {
    position: fixed;
    right: 5px;
  }
}

.error-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 1;
}
.error-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(85, 65, 42, 0.336);
  z-index: 2;
}
.error-hero .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-hero .hero-content .error-box {
  text-align: center;
  padding: 60px 70px;
  background: rgba(255, 255, 255, 0.315);
  backdrop-filter: blur(8px);
  border-radius: 10px;
}
.error-hero .hero-content .error-box h2 {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #000;
  font-family: "Althy";
}
.error-hero .hero-content .error-box h4 {
  font-size: 2rem;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: #000;
  opacity: 0.9;
}
.error-hero .hero-content .error-box p {
  color: #000;
  opacity: 0.8;
}
@media (max-width: 578px) {
  .error-hero .hero-content .error-box {
    padding: 30px 50px;
  }
  .error-hero .hero-content .error-box h2 {
    font-size: 4rem !important;
  }
  .error-hero .hero-content .error-box h4 {
    font-size: 1.6rem !important;
  }
}

.thank {
  background: #F7F7F7;
  overflow: hidden;
}
.thank .thank-img-wrapper {
  position: relative;
}
.thank .thank-img-wrapper .thank-img {
  width: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.thank .thank-img-wrapper .floating-card {
  position: absolute;
  background: #e4d9c5;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.thank .thank-img-wrapper .floating-card h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.thank .thank-img-wrapper .card-1 {
  top: 30px;
  left: -20px;
}
.thank .thank-img-wrapper .card-2 {
  bottom: 30px;
  right: -20px;
}
.thank .thank-content {
  padding-left: 60px;
}
.thank .thank-content span {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fcaf17;
  font-family: "Hurricane";
}
.thank .thank-content h1 {
  font-size: 3.7rem;
  line-height: 1.1;
  margin: 10px 0;
  font-family: "Althy";
}
.thank .thank-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 520px;
}

@media (max-width: 991px) {
  .thank .thank-content {
    padding-left: 0;
    margin-top: 50px;
  }
  .thank .thank-content h1 {
    font-size: 42px;
  }
  .thank .thank-content p {
    margin-bottom: 15px;
  }
  .thank .thank-img-wrapper .card-1,
  .thank .thank-img-wrapper .card-2 {
    display: none;
  }
}
.modal-content .modal-header {
  color: #fcaf17;
}
.modal-content .form-label {
  color: #000;
  font-family: "Althy";
  font-size: 1rem;
}

.pageloader .contact-sec .section-title {
  color: #553421;
}
.pageloader .contact-sec label {
  color: #553421;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.pageloader .contact-sec .contact-section {
  background: none;
}
.pageloader .contact-sec .form-control {
  border-radius: 0;
  min-height: 45px;
}
.pageloader .contact-sec textarea.form-control {
  min-height: 120px;
}
.pageloader .modal-content {
  border-radius: 20px;
  overflow: hidden;
}
.pageloader .btn-close {
  box-shadow: none;
}

.sticky-social.whatshapp {
  background-color: green;
  color: #fff;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shake 2s infinite;
  cursor: pointer;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-12deg);
  }
  20% {
    transform: rotate(12deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.footer-section .social.bottom .social-icon {
  width: 40px;
  height: 40px;
}
.footer-section .social.bottom .social-icon a i {
  font-size: 20px;
}

.luxury-icon {
  background: #6d6e71;
  overflow: hidden;
  margin: 0;
}
.luxury-icon .swiper-wrapper {
  transition-timing-function: linear !important;
}
.luxury-icon .swiper-slide {
  width: auto !important;
  white-space: nowrap;
  font-size: 30px;
  font-weight: 300;
  font-family: "Althy";
  color: #1f2d5a;
}

.avil-product span {
  width: 8px;
  height: 8px;
}

.features {
  background: rgba(255, 250, 247, 0.8274509804);
}
.features p {
  color: #8C8C8C;
}
.features .feature-arround {
  background-color: rgba(255, 244, 223, 0.8431372549);
  border: 1px solid rgba(252, 175, 23, 0.1);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.06);
}
.features .featureslist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.25rem;
}
@media (max-width: 991px) {
  .features .featureslist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .features .featureslist {
    grid-template-columns: 1fr;
  }
}
.features .featureslist li {
  background: #fff;
  color: gray;
  padding: 1rem 1rem 1rem 2.75rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  border: 1px solid rgba(252, 175, 23, 0.15);
  min-height: 70px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.034);
}
.features .featureslist li::before {
  content: "\f26e";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fcaf17;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.applications {
  background: #fff;
}
.applications .application-card {
  background: #fffaf7;
  border: 1px solid rgba(252, 175, 23, 0.15);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: 0.4s ease;
  height: 100%;
}
.applications .application-card i {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(252, 175, 23, 0.1);
  color: #fcaf17;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.applications .application-card h6 {
  margin: 0;
  font-weight: 600;
}
.applications .application-card:hover {
  transform: translateY(-6px);
  border-color: #fcaf17;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.compare-section .section-desc {
  color: #7b7b7b;
}

.comparison-wrapper {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.compare-table thead {
  background: linear-gradient(135deg, #d69a2d, #f0c15d);
}
.compare-table thead th {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.3rem;
  border: none;
}
.compare-table tbody tr {
  transition: 0.3s ease;
}
.compare-table tbody tr:hover {
  background: rgba(214, 154, 45, 0.05);
}
.compare-table tbody td {
  padding: 1.2rem;
  border-color: #f2ede4;
  font-size: 0.95rem;
  color: #444;
}
.compare-table tbody td:first-child {
  font-weight: 600;
  color: #222;
  text-align: left;
  min-width: 250px;
}
.compare-table .best {
  color: #d69a2d;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.compare-table .badge-best {
  background: rgba(214, 154, 45, 0.12);
  color: #c48112;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
}

@media (max-width: 768px) {
  .compare-section .section-title {
    font-size: 2rem;
  }
  .compare-table td,
  .compare-table th {
    white-space: nowrap;
  }
}
.choice-slider {
  position: relative;
  min-height: 50vh;
}
.choice-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 220px;
  background: url("../img/pages/wood 2.png") no-repeat;
  background-size: contain;
  z-index: 1;
}
.choice-slider .choice-img img {
  max-width: 260px;
}
.choice-slider p {
  font-size: 14px;
  color: #444;
}
.choice-slider .timeline {
  position: relative;
  padding-top: 10px;
  width: 100%;
  padding: 3rem 1rem 0rem;
  position: relative;
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  flex-wrap: wrap;
}
.choice-slider .timeline::before {
  content: "";
  position: absolute;
  left: 8.5rem;
  height: 20rem;
  top: 8.5rem;
  bottom: 10px;
  width: 1px;
  background: #d9d9d9;
  top: 10%;
}
.choice-slider .timeline .timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1px;
  padding-right: 40px;
  font-family: "Althy";
  font-size: 26px;
  font-weight: 400;
  color: #d9d9d9;
  transition: all 0.4s ease;
  width: 90px;
}
.choice-slider .timeline .timeline-item::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.choice-slider .timeline .timeline-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 2px solid #d9d9d9;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
}
.choice-slider .timeline .timeline-item.active {
  color: #000;
  font-size: 38px;
  font-weight: 600;
  padding-left: -2px !important;
  display: flex;
  align-items: center;
}
.choice-slider .timeline .timeline-item.active::after {
  background: #e5a52d;
  border-color: #e5a52d;
  width: 15px;
  height: 15px;
}
.choice-slider .cards-wrapper {
  position: relative;
  height: 525px;
  overflow: hidden;
}
.choice-slider .solution-card {
  position: absolute;
  inset: 0;
  background: #f8f8f8;
  padding: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
}
.choice-slider .solution-card .card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.choice-slider .solution-card .card-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  color: #999;
}
.choice-slider .solution-card .card-content ul li::before {
  content: "";
  display: none;
}
.choice-slider .solution-card h2 {
  margin-bottom: 20px;
}
.choice-slider .solution-card:first-child {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1380px) {
  .choice-slider .timeline::before {
    position: absolute;
    left: 7.5rem;
    top: 5rem;
  }
}

@media (max-width: 991.98px) {
  .choice-slider::after {
    display: none !important;
  }
  .choice-slider .timeline {
    padding: 2rem 0;
  }
  .choice-slider .timeline::before {
    display: none !important;
  }
  .choice-slider .timeline {
    justify-content: center;
    gap: 1.5rem;
  }
  .choice-slider .timeline .timeline-item {
    width: auto;
    font-size: 22px;
    margin-bottom: 0;
    padding-right: 28px;
  }
  .choice-slider .timeline .timeline-item.active {
    font-size: 30px;
  }
  .choice-slider .timeline .timeline-item::before {
    width: 28px;
    height: 28px;
  }
  .choice-slider .timeline .timeline-item::after {
    width: 12px;
    height: 12px;
  }
  .choice-slider .cards-wrapper {
    height: 700px;
  }
  .choice-slider .solution-card {
    padding: 30px;
  }
  .choice-slider .solution-card h2 {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .choice-slider::after {
    display: none;
  }
  .choice-slider .timeline {
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .choice-slider .timeline .timeline-item {
    font-size: 18px;
    padding-right: 20px;
    width: auto;
  }
  .choice-slider .timeline .timeline-item.active {
    font-size: 24px;
  }
  .choice-slider .timeline .timeline-item::before {
    width: 24px;
    height: 24px;
    right: -6px;
  }
  .choice-slider .timeline .timeline-item::after {
    width: 10px;
    height: 10px;
  }
  .choice-slider .cards-wrapper {
    height: 500px;
  }
  .choice-slider .solution-card {
    position: relative;
    inset: auto;
    padding: 25px;
  }
  .choice-slider .card-content ul li {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .choice-slider::after {
    display: none;
  }
  .choice-slider .timeline {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 0 20px;
  }
  .choice-slider .timeline::before {
    display: none;
  }
  .choice-slider .timeline .timeline-item {
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .choice-slider .timeline .timeline-item::before, .choice-slider .timeline .timeline-item::after {
    display: none;
  }
  .choice-slider .timeline .timeline-item.active {
    background: #e5a52d;
    color: #fff;
    font-size: 14px;
  }
  .choice-slider .cards-wrapper {
    height: auto !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .choice-slider .solution-card {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  .choice-slider .card-content .card-img {
    margin-top: 20px;
  }
  .choice-slider .card-content .card-img img {
    width: 100%;
    border-radius: 12px;
  }
  .choice-slider .card-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .choice-slider .card-content ul {
    margin: 0;
    padding-left: 18px;
  }
  .choice-slider .card-content ul li {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
  }
}
.specifications {
  position: relative;
  overflow: hidden;
}
.specifications .specification-bg {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.specifications .spec-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.specifications .spec-title {
  margin-bottom: 1rem;
}
.specifications .spec-subtitle {
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
}
.specifications .plywood-stack {
  position: relative;
  z-index: 2;
}
.specifications .plywood-stack img {
  max-width: 420px;
}
.specifications .spec-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 50px;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.18);
}
.specifications .spec-item {
  margin-bottom: 20px;
}
.specifications .spec-item h6 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.specifications .spec-item p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 200;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 1280px) {
  .specifications .specification-bg {
    min-height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .specifications .spec-card {
    padding: 40px;
  }
  .specifications .section-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .specifications .specification-bg {
    min-height: 150vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .specifications .spec-card {
    padding: 40px;
  }
  .specifications .section-title {
    font-size: 48px;
  }
}
@media (max-width: 991.98px) {
  .specifications .specification-bg {
    min-height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .specifications .spec-overlay {
    position: relative;
    padding: 60px 0;
  }
  .specifications .spec-card {
    padding: 35px;
  }
  .specifications .row.align-items-end {
    justify-content: center !important;
  }
  .specifications .col-lg-9 {
    width: 100%;
  }
}
@media (max-width: 567.98px) {
  .specifications .specification-bg {
    height: 130vh;
    min-height: unset;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .specifications .spec-overlay {
    padding: 40px 0;
  }
  .specifications .spec-card {
    padding: 25px 20px;
  }
  .specifications .section-title {
    font-size: 32px !important;
  }
}
.crafts {
  padding: 100px 0;
  background: #fff;
}
.crafts .section-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.crafts .section-desc {
  font-size: 15px;
  line-height: 1.3;
  color: #8C8C8C;
  font-weight: 500;
  max-width: 550px;
  margin-bottom: 40px;
}
.crafts .craft-image {
  margin-top: auto;
  flex: 1;
  overflow: hidden;
  border-radius: 24px;
}
.crafts .craft-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.crafts .feature-item {
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.crafts .feature-item .icon-box {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.crafts .feature-item .icon-box img {
  width: 32px;
  height: 32px;
}
.crafts .feature-item h4 {
  font-size: 16px;
  margin-bottom: 7px;
  color: #0C0C0C;
  font-family: "Althy";
  font-weight: 300;
}
.crafts .feature-item h5 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 14px;
  color: #0C0C0C;
  font-family: "Althy";
}
.crafts .feature-item p {
  font-size: 13px;
  line-height: 1.3;
  color: #8C8C8C;
  margin: 0;
}
@media (max-width: 991px) {
  .crafts .section-content,
  .crafts .feature-item {
    height: auto;
  }
  .crafts .craft-image img {
    min-height: auto;
  }
  .crafts .section-title {
    font-size: 42px;
  }
  .crafts .feature-item h5 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .crafts {
    padding: 70px 0;
  }
  .crafts .section-title {
    font-size: 34px;
  }
  .crafts .section-desc {
    font-size: 16px;
  }
  .crafts .feature-item {
    text-align: left;
  }
  .crafts .feature-item h5 {
    font-size: 20px;
  }
}/*# sourceMappingURL=index.css.map */