@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --poppins: "Poppins", sans-serif;
  --manrope: "Manrope", sans-serif;
  --blue: #005FAE;
  --wood: #A98B71;
  --color: #33363F;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--white);
  color: var(--black);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin-right: 15px;
}

a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.padding {
  padding: 80px 0;
}

button {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  /* color: #33363F; */
  color: #555;
  line-height: 30px;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--manrope);
  line-height: 120%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  /* padding: 18px 80px; */
  padding: 0 80px;
  background-color: white;
  box-shadow: 0px 4px 7.5px 0px #3E3E3E69;
}

.dropdown-menu {
  display: none;
  margin-top: 0;
}

/* Dropdown menu container */
.dropdown-menu {
  display: none;
  /* background: #fff; */
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: none;
  min-width: 250px;
  transition: all 0.3s ease;
  margin-top: 10px;
  z-index: 1000;
}

/* Each dropdown item */
.dropdown-item {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

/* Hover effect for dropdown items */
.dropdown-item:hover {
  background: #f4f4f4;
  padding-left: 25px;
}



.nav-link,
.nav-link:hover {
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  color: #1E1E1E;
  text-transform: capitalize;
}

.inner-nav .nav-link,
.inner-nav .nav-link:hover {
  color: var(--black);
}

.header_links {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.header_links li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-nav .header_links li {
  color: var(--black);
}

.header_links li:not(:last-child) {
  margin-bottom: 10px;
}

.header_links li a {
  color: var(--white);
}

.inner-nav .header_links li a {
  color: var(--black);
}

.inner-nav .header_links li svg path {
  fill: #000;
}

.about_section {
  padding: 80px 0;
}

.hamburger {
  display: none;
}

.mob_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mob_menu ul li {
  margin-bottom: 8px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: none;
}

.mob_menu ul li a {
  text-transform: capitalize;
  color: var(--black);
  text-decoration: none;
  display: block;
  font-weight: 500;
  padding: 12px 15px;
  background: #f5f5f5;
}

/* dropdown toggle icon */
.mob-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.mob-link {
  flex: 1;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}

.mob-toggle {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  background: #f5f5f5;
  transition: 0.3s;
}

.mob-dropdown.open .mob-toggle {
  content: "-";
}

/* submenu hidden by default */
.mob-submenu {
  display: none;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}

.mob-submenu li {
  padding: 10px 20px;
  border-top: 1px solid #ddd;
}

.mob_info {
  margin: 20px 2px;
  position: relative;
  bottom: 0;
}

.mob_info ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mob_info ul li a {
  color: black;
  font-size: 14px;
  font-weight: 400;
}

.mob_info ul li svg path {
  fill: black;
}

.contact {
  font-family: Manrope;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  text-transform: capitalize;
  color: white;
  background: var(--blue);
  padding: 8px 18px;
  border-radius: 100px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}

.input-wrapper .input {
  border-style: none;
  height: 50px;
  width: 50px;
  padding: 10px;
  outline: none;
  border-radius: 50%;
  transition: 0.5s ease-in-out;
  background-color: #1E1E1E;
  box-shadow: 0px 0px 3px #1E1E1E;
  padding-right: 40px;
  color: #fff;
}

.input-wrapper .input::placeholder,
.input-wrapper .input {
  font-size: 17px;
  color: #333;
}

.input-wrapper .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  outline: none;
  border-style: none;
  border-radius: 50%;
  pointer-events: painted;
  background-color: transparent;
  transition: 0.2s linear;
}

.input-wrapper .icon:focus~.input,
.input-wrapper .input:focus {
  box-shadow: none;
  width: 250px;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 3px solid #1557c0;
  transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

/* banner slider */
.bannerSwipper {
  width: 100%;
  height: 100vh;
}

.bannerSwipper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

/* Slide 1 */
.bannerSwipper .swiper-slide.banner-1 {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)),
    url('../img/banner-1.jpg');
  background-size: cover;
  background-position: center;
}

/* Slide 2 */
.bannerSwipper .swiper-slide.banner-2 {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)),
    url('../img/banner-2.jpg');
  background-size: cover;
  background-position: center;
}

/* Slide 3 */
.bannerSwipper .swiper-slide.banner-3 {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)),
    url('../img/banner-3.jpg');
  background-size: cover;
  background-position: center;
}

.bannerSwipper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner h3 {
  color: white;
  font-family: Manrope;
  font-weight: 800;
  font-size: 32px;
  line-height: 120%;
  text-transform: capitalize;
}

.banner h2 {
  color: white;
  font-family: Manrope;
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  text-transform: capitalize;
}

.banner p {
  color: white;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

.navigation-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 80px;
  display: flex;
  z-index: 1;
  justify-content: space-between;
}

.button-next {
  transform: scaleX(-1);
}

/* about */
.about {
  padding: 60px 0;
}

.wood_card {
  border-radius: 32px;
  overflow: hidden;
}

.wood_card img {
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.who_card {
  display: flex;
  position: relative;
  align-items: center;
  background: linear-gradient(0deg, rgba(30, 30, 30, 0.1), rgba(30, 30, 30, 0.1));
  padding: 25px;
  height: 100%;
  padding-right: 35%;
  border-radius: 32px;
  overflow: hidden;
}

.who_card .door {
  position: absolute;
  right: 0;
  background: none;
}

.who_card h4 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-transform: capitalize;
  color: #33363F;
}

.who_card p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 152%;
}

.about h1 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-transform: capitalize;
}

.highlight_card {
  position: relative;
  width: 100%;
  height: 363px;
  overflow: hidden;
  border-radius: 8px;
}

.highlight_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight_card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180.44deg, rgba(0, 0, 0, 0) 68.73%, rgba(0, 0, 0, 0.66) 99.62%);
  pointer-events: none;
}

.highlight_card p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  color: white;
  z-index: 2;
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-size: 16px;
  line-height: 157%;
}

.why h6 {
  font-family: Manrope;
  color: #A98B71;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-transform: capitalize;
}

.why h4 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-transform: capitalize;
}

.why ul {
  list-style: circle;
  padding-left: 20px;
}

.why ul li {
  color: #33363F;
}

.stat-box {
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0px 12px 40px 0px #00000017;
}

.stat-box h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope;
  font-weight: 800;
  font-size: 24px;
  line-height: 120%;
  color: #1E1E1E;
  margin: 0;
}

.stat-box .odometer {
  font-size: inherit;
  font-weight: 800;
  color: inherit;
  font-family: var(--manrope) !important;
}

.stat-box .plus {
  margin-left: 4px;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.stat-box p {
  margin: 0;
  margin-top: 10px;
  font-family: Manrope;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-transform: capitalize;
}

.download {
  font-family: Manrope;
  font-weight: 600;
  font-size: 14px;
  gap: 10px;
  background: var(--blue);
  padding: 12px 16px;
  color: white;
  display: inline-block;
  width: fit-content;
  border-radius: 32px;
}

.download img {
  margin-right: 12px;
}

.products_section {
  background: #A98B711A;
  padding: 40px 0;
}

.products_section h3 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-transform: capitalize;
}

.view svg {
  margin-left: 8px;
  transition: all 250ms;
}

.view {
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-transform: capitalize;
  color: var(--blue);
  padding: 12px 24px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--blue);
  transition: all 250ms;
  overflow: hidden;
  cursor: pointer;
}

.view::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100px;
  height: 100%;
  width: 0;
  background: var(--blue);
  transition: all 250ms;
  z-index: -1;
}

.view:hover::before {
  width: 100%;
}

.view:hover svg path {
  stroke: white;
}

.view:hover {
  color: #fff;
}

.product_card {
  padding: 10px;
  background-color: white;
  border-radius: 24px;
  display: block;
}

.product_card h4 {
  font-family: Poppins;
  color: #1E1E1E;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.pd_wrap {
  width: 100%;
  height: 257px;
  overflow: hidden;
  position: relative;
}

.pd_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Apply mask */
  -webkit-mask-image: url('../img/Subtract.png');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url('../img/Subtract.png');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}

.enquiry {
  height: 469px;
  display: flex;
  align-items: center;
  background: url('../img/enquiry.jpg');
  background-size: cover;
}

.enquiry h2 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 0%;
  color: white;
  text-transform: capitalize;
}

.enquiry p {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: white;
}

.view.alt {
  background: var(--blue);
  border: 1px solid white;
  color: white;
}

.view.alt svg path {
  stroke: white;
}

.gallery {
  padding: 80px 0;
}

.gallery h4 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  text-transform: capitalize;
}

.wrapper {
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

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

.testimonial h3 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  text-transform: capitalize;
}

.testimonialSwipper {
  padding: 60px 0;
}

.testimonial_card {
  position: relative;
}

.test_content {
  background: white;
  padding: 25px;
  margin-top: 50p;
  border-radius: 16px;
  box-shadow: 0px 12px 54px 0px #00000017;
}

.test_content .stars {
  text-align: right;
  margin-bottom: 10px;
}

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

.author h6 {
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  text-transform: capitalize;
}

.author p {
  font-family: Manrope;
  font-weight: 500;
  font-size: 14px;
  margin: 0;
  text-transform: capitalize;
}

.author-img {
  width: 63px;
  height: 63px;
  border-radius: 100%;
  overflow: hidden;
}

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

.quotes {
  width: 57px;
  height: 57px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  color: white;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%);
}

footer {
  background: #181818;
  padding: 80px 0;
}

.foot_widget p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: white;
  margin: 30px 0;
}

.foot_widget h5,
.contact-card h5 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 12px;
  color: white;
  text-transform: capitalize;
}

.foot_links li:not(:last-child) {
  margin-bottom: 12px;
}

.foot_links li a {
  font-family: Manrope;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: white;
  text-transform: capitalize;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item .icon {
  color: white;
  font-size: 18px;
  margin-right: 10px;
  line-height: 1.5;
}

.contact-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.fixed {
  position: fixed;
  bottom: 5%;
  right: 1%;
  z-index: 10;
}

.fixed ul :first-child {
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  color: #fff;
  margin: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumb h1 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 40px;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
}

.contact_area {
  padding: 60px 0;
}

.contact_area h4 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 24px;
}

.contact_card {
  padding: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.form-label {
  font-weight: 600;
  font-size: 16px;
}

.form-control {
  border-radius: 100px;
  padding: 10px 25px;
}

textarea.form-control {
  border-radius: 12px;
}

.submit {
  background: var(--blue);
  color: white;
  text-align: end;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  width: fit-content;
}

.info-card {
  border-radius: 8px;
  background: #000;
  padding: 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.form_padd {
  padding-top: 25px;
  padding-left: 25px;
}

.info-card .circle {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: #484848;
  opacity: 0.5;
}

.info-card h6 {
  color: white;
  font-size: 22px;
  font-weight: 600;
}

.info-card p {
  color: #C9C9C9;
}

.info-card li {
  margin-bottom: 40px;
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.info-icons li i {
  color: white;
  font-size: 18px;
  width: 18px;
}

.info-icons li a {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.info-icons span {
  color: white;
  font-size: 18px;
}

.map {
  height: 500px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}



.about-sec h3 {
  font-family: Manrope;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.mission {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../img/mission.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 500px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

.mission h3 {
  font-size: 32px;
  color: white;
  font-weight: 700;
  text-transform: capitalize;
}

.mission h6 {
  color: white;
  opacity: 0.7;
  font-size: 18px;
}

.mission .underline {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.mission .underline span {
  width: 60px;
  height: 3px;
  margin: 10px 0 40px;
  background: white;
  border-radius: 10px;
}

.card {
  padding: 25px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.card h4 {
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}

.offers h5 {
  text-transform: uppercase;
  color: #A98B71;
  font-size: 18px;
  font-weight: 500;
}

.offers h3 {
  font-size: 40px;
  font-weight: 700;
}

/* product slider */
.sticky-content {
  position: sticky;
  top: 150px;
}

.productSwipper {
  width: 100%;
  height: 100%;
}

/* Main image slider */
.mySwiper2 {
  height: 400px;
  width: 100%;
  margin-bottom: 10px;
}

.mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /*object-fit: cover;*/
  border-radius: 12px;
}

/* Thumbnail slider */
.mySwiper {
  height: 100px;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
  cursor: pointer;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #007bff;
  border-radius: 8px;
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.product_description h2 {
  font-size: 40px;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-weight: 700;
}

.product_description h4 {
  font-size: 28px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.product_description ul {
  list-style: disc;
  margin-left: 20px;
}

.product_description ul li {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
}

.innerGallery .wrapper {
  height: 400px;
}

.benefits-section {
  background: linear-gradient(135deg, #f9f7f4 0%, #f1ece5 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23a98b7122' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.section-title {
  font-family: var(--poppins);
  font-weight: 600;
  /* color: var(--wood); */
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--wood);
}

.benifit_card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--wood);
  position: relative;
  overflow: hidden;
}

.benifit_card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--blue);
  opacity: 0.05;
  border-radius: 0 0 0 100px;
  transition: all 0.5s ease;
}

.benifit_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benifit_card:hover::before {
  width: 120px;
  height: 120px;
}

.benifit_card h4 {
  font-family: var(--poppins);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 40px;
}

.benifit_card h4::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--wood);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.benifit_card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color);
  padding-left: 40px;
}

.benefits-section .row {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .benifit_card {
    margin-bottom: 1.5rem;
  }
}

.modalForm {
  background: #A98B71;
  color: white;
}

.modalForm input,
.modalForm textarea,
.modalForm input:focus,
.modalForm textarea:focus {
  background: transparent;
  color: white;
  border-radius: 12px;
  box-shadow: none;
  border-color: white;
}

.modalForm input::placeholder,
.modalForm textarea::placeholder {
  color: white;
}


.application {
  width: 100%;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ✅ Proper syntax */
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/plywoods.jpg");
  background-size: cover;
  background-position: center;
}

.blur_card {
  position: relative;
  width: min(90vw, 520px);
  padding: 24px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  color: #fff;
  margin: auto;
  height: 100%;
}

.blur_card h6 {
  color: white;
  font-size: 24px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.blur_card p {
  color: white;
  text-align: center;
  margin: 0;
}

.ply h4 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: capitalize;
}







/* Premium, neutral styling */
.product-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #e3e6ea;
}

/* Media area keeps perfect ratio and neat crop */
.product-media {
  display: block;
  aspect-ratio: 4 / 3;
  /* Modern browsers */
  background: #f8f9fa;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}

/* Body */
.product-body {
  padding: 16px;
}

.product-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 6px;
  color: #212529;
}

.product-desc {
  margin: 0 0 14px;
  font-size: 0.925rem;
  line-height: 1.5;
  color: #6c757d;
}

/* Button: neutral, pill, minimalist */
.btn-view {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1px solid #dee2e6;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: border-color .2s ease, box-shadow .2s ease, transform .1s ease;
}

.btn-view:hover {
  border-color: #cfd4da;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.btn-view:active {
  transform: translateY(1px);
}

.explore {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}


/* Colors and styles */
.text-charcoal-gray {
  color: #333333;
}

.text-dark-gray {
  color: #4a4a4a;
}

.text-medium-gray {
  color: #6c757d;
}

.text-brand-brown {
  color: #8B5E3C;
}

.bg-soft-beige {
  background-color: #f7f3ef;
}

/* Custom badge style for specs */
.spec-badge {
  background-color: #f7f3ef;
  color: #333333;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
}

/* Box shadow & card style */
#specs_card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* Optional spacing fixes */
.gap-2 {
  gap: 0.5rem !important;
}

