/* active navbar classess: ...........  */

.navbar-nav .nav-link.navLink-active,
.navbar-nav .nav-link.active {
  position: relative;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

/* COMMON CSS ...............  */

.section-title {
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 60px);
  color: #362f21;
  line-height: 1.2;
}

.section-title span {
  font-family: "Petit Formal Script", serif;
  font-style: italic;
}

#heroCarousel .carousel-item .hero h1 {
  font-family: "Frank Ruhl Libre";
  font-weight: 300;
  font-style: Light;
  font-size: clamp(1.8rem, 5vw, 80px);
  letter-spacing: -2px;
  text-align: center;
  vertical-align: bottom;
  text-transform: capitalize;
  color: #fff !important;
}

.hero-heading {
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 300;
  font-style: Light;
  font-size: clamp(1.8rem, 5vw, 80px);
  line-height: 42px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-text {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 684px;
}

/* Base Styles */
.page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
  padding: 1rem 2rem;
}

.navbar-brand {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.navbar-nav {
  display: flex;
  gap: 2rem;
}

.navbar-nav .nav-item {
  width: 100px;
}

.navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navLink-active {
  color: #fff !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-quote {
  background: #362f21;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-quote:hover {
  background-color: #2b2419 !important;
  color: #fff;
}

/* ---------------- HERO ---------------- */

.flexo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero1 {
  background: url("../images/home/heroImg.jpg") center center/cover no-repeat;
}

.hero2 {
  background: url("../images/home/hero2.jpg") center center/cover no-repeat;
}

.hero3 {
  background: url("../images/home/hero3.jpg") center center/cover no-repeat;
}

.hero4 {
  background: url("../images/home/hero4.jpg") center center/cover no-repeat;
}

.hero5 {
  background: url("../images/home/hero5.jpg") center center/cover no-repeat;
}

.hero {
  height: 100vh;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 61px;
}

.waves {
  position: absolute;
  bottom: 212px;
  left: 0;
  width: 100%;
  height: 50px;
  pointer-events: none;
}

.waves svg {
  opacity: 0.3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
}

.btn-dark-custom {
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 2px solid #fff;
  padding: 0.9rem 2rem;
  color: #fff;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
}

.btn-dark-custom:hover {
  border: 2px solid #49382e;
}

/* ---------- SLIDER ARROWS ---------- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 5;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.left {
  left: 20px;
}

.slider-arrow.right {
  right: 20px;
}

.slider-arrow i {
  font-size: 20px;
  color: #000;
}

/* Explore Top products Section ...*/
#products {
  /* margin-top: 150px; */
  margin-right: 0;
  position: relative;
}

#products .container {
  position: relative;
}

#products h2 {
  font-family: "Frank Ruhl Libre", serif;
  color: #362f21;
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 3.75rem);
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 3rem;
  position: relative;
  left: auto;
  transform: none;
}

#products h2 span {
  font-family: "Petit Formal Script", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 3.75rem);
  text-transform: capitalize;
}

.explore-text {
  position: absolute;
  left: -40px;
  top: 60%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left top;
  color: #362f21;
  font-family: "Petit Formal Script";
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  text-transform: capitalize;
}

/* Card styles */
#products .card-title {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #362f21;
  transition: 0.5s ease-in-out;
  text-align: start;
}

#products .card-text {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #7e7775 !important;
  line-height: 1.4;
  text-align: start;
}

.img {
  height: 100%;
  overflow: hidden;
}

#products .card .card-img-top {
  transition: 0.5s ease-in-out;
}

#products .card:hover .card-title {
  scale: 1.1;
  font-weight: 600;
}

#products .card:hover .card-img-top {
  scale: 1.2;
  filter: brightness(70%);
}

.bottom-line {
  width: 90px;
  height: 5px;
  display: block;
  background-color: #362f21;
  border-radius: 16px;
}

.bottom-line-thin {
  width: 270px;
  height: 2px;
  display: block;
  background-color: #362f2199;
  position: relative;
  left: 90px;
  bottom: 3px;
  border-radius: 16px;
}

/* why HA section..........  */
#why-us {
  margin-bottom: 90px;
}

.custom-img {
  filter: drop-shadow(0px 4px 20px 5px #00000040);
}

.decor-box {
  position: absolute;
  bottom: -27px;
  left: -57px;
  border-radius: 4px;
  width: 105px;
  height: 105px;
  background: #f8f3ef;
  box-shadow: 0 4px 22.5px 5px rgba(0, 0, 0, 0.25);
}

.dot-grid {
  position: absolute;
  top: -41px;
  right: 17px;
  width: clamp(70px, 10vw, 87px);
  height: clamp(70px, 10vw, 89px);
  pointer-events: none;
  z-index: 2;
}

.why-us .imgDiv {
  border-radius: 218px 0 0 0;
  width: 475px;
}

.why-us .imgDiv img {
  border-radius: 218px 0 0 0;
  transition: 0.5s ease-in-out;
}

.why-us .imgDiv {
  overflow: hidden;
}

.why-us .imgDiv img:hover {
  scale: 1.1;
  filter: brightness(70%);
  transition: 0.5s ease-in-out;
}

.section-text {
  margin-top: 20px;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  color: #362f21;
  max-width: 557px;
  font-weight: 400;
  font-style: normal;
}

/* Stats Bar */
.stats-bar {
  background: #fff;
  box-shadow: 0 4px 16.3px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  right: 142px;
  top: 27px;
}

.stats-bar h3 {
  color: #362f21;
  text-align: center;
  font-family: "Frank Ruhl Libre";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.stats-bar p {
  color: rgba(54, 47, 33, 0.8);
  text-align: center;
  font-family: "Lato";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 170.806%;
  letter-spacing: 2.21px;
  text-transform: capitalize;
  transition: all 1s ease;
}

.stat-box {
  border-right: 1px solid #000000;
}

.stat-box:last-child {
  border-right: none;
}

/* latest blog section..... */

#latest-blog h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  font-family: "Frank Ruhl Libre";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 61px;
}

#latest-blog h2 span {
  color: #fff;
  font-family: "Petit Formal Script";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.latestBlogText {
  color: #fff;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 170.806%;
  letter-spacing: 2.08px;
  text-transform: capitalize;
}

.seeBtn {
  height: 68px;
  width: 212px;
  display: grid;
  place-content: center;
  border: 1px solid #fff;
  border-radius: 0;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 60px !important;
}

.btn-see-more {
  height: 38px;
  width: 124px;
  display: grid;
  place-content: center;
  color: #2f291d;
  border: 1.5px solid #bcbcbc;
  border-radius: 0;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.left-latest-blog {
  width: 80%;
}

#latest-blog .btn-outline-light:hover {
  background-color: #fff;
  color: #2f291d;
}

.custom-card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 0;
  height: 500px;
  background-color: #fff;
  width: 100%;
  border-radius: 2px;
}

.custom-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  object-fit: cover;
  transition: all 0.5s ease;
  z-index: 1;
  border-radius: 0;
}

.custom-card:hover img {
  height: 100%;
  object-fit: cover;
}

.custom-card .card-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: white;
  padding: 1rem;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  z-index: 2;
}

.custom-card .card-body h5 {
  font-family: "Lato";
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: rgba(54, 47, 33, 1);
}

.custom-card .card-body p {
  font-family: Lato;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(126, 119, 117, 1);
  margin-bottom: 28px;
}

.custom-card:hover .card-body {
  opacity: 0;
  transform: translateY(20px);
}

#corousalDot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  background: transparent;
}

.carousel-indicators .active {
  background-color: #fff !important;
  opacity: 1 !important;
}

.carousel-inner-custom {
  width: 116%;
}

.carousel-indicators {
  margin: 30px 0;
  display: flex;
  justify-content: flex-start;
}

/* idea-reality..............  */
/* Section Title */
#idea-reality .section-heading {
  color: #362f21;
  text-align: center;
  font-family: "Frank Ruhl Libre";
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

#idea-reality .section-heading span {
  color: #362f21;
  font-family: "Petit Formal Script";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

/* Sub-heading */
#idea-reality .sub-heading {
  color: #373737;
  font-family: "Frank Ruhl Libre";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 19px;
}

/* Paragraph */
#idea-reality .description {
  color: #ababab;
  font-family: "Lato";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 74px;
  width: 429px;
}

/* Button */
#idea-reality .btn-view {
  width: 170px;
  height: 78px;
  display: grid;
  place-content: center;
  background: #ffffff;
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #272727;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  transition: all 0.3s ease;
  color: #252525;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#idea-reality .btn-view span {
  width: 20px;
  height: 24px;
}

#idea-reality .btn-view:hover {
  background: #362f21;
  color: #fff;
}

/* Image Wrapper */
.image-wrapper {
  overflow: hidden;
}

.image-wrapper:hover .main-img {
  transform: scale(1.03);
  transition: all 1s ease;
}

.image-wrapper .main-img {
  transition: all 1s ease;
}

/* Vertical Text (default state) */
.vertical-text {
  position: absolute;
  top: 50%;
  left: -143px;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Frank Ruhl Libre", serif;
  color: #362f21;
  white-space: nowrap;
  z-index: 25;
  font-size: 80px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 12px;
  transition: all 1s ease;
}

.vertical-text-craft {
  left: -74px !important;
}

.vertical-text-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Frank Ruhl Libre", serif;
  color: #362f21;
  white-space: nowrap;
  z-index: 25;
  font-size: 80px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 12px;
  transition: all 1s ease;
  left: -160px !important;
}

/* Hover effect */
.outer-image-wrapper:hover .vertical-text {
  left: 515px;
  transform: translateY(-50%) rotate(90deg);
  transition: all 1s ease;
}

.outer-image-wrapper:hover .vertical-text-craft {
  left: 580px !important;
  transition: all 1s ease;
}

.outer-image-wrapper:hover .vertical-text-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Frank Ruhl Libre", serif;
  color: #362f21;
  white-space: nowrap;
  z-index: 25;
  font-size: 80px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 12px;
  transition: all 1s ease;
  left: 498px !important;
}

/* our core values.................  */
#core-values .section-heading {
  color: #362f21;
  font-family: "Frank Ruhl Libre";
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 2.5px;
  text-transform: capitalize;
  margin-bottom: 60px;
}

#core-values .section-heading span {
  color: #362f21;
  font-family: "Petit Formal Script";
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 2.5px;
  text-transform: capitalize;
}

#core-values .description {
  color: #7e7775;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#core-values .icon {
  background-color: #d9d9d9;
  height: 31px;
  width: 31px;
  border-radius: 50%;
  position: relative;
  left: 20px;
}

#core-values .icon img {
  position: absolute;
  right: 12px;
  bottom: 9px;
}

#core-values .icon-title {
  color: #49382e;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#core-values .icon-sub-title {
  color: #7e7775;
  font-family: "Lato";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 200px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 45px 0 45px 0;
}

.overlay-border {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  pointer-events: none;
}

/* banner.......................   */

#values-icons {
  background-color: #f8f1ea;
  /* max-height: 461px; */
  padding: 133px 0;
}

#values-icons .value-title {
  color: #362f21;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

#values-icons .value-text {
  color: #9a9a9a;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

#values-icons .icon img {
  filter: grayscale(100%) brightness(0) invert(20%);
}

/* testimonials...  */
#testimonials h2 {
  color: #362f21;
  text-align: center;
  font-family: "Frank Ruhl Libre";
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

#testimonials h2 span {
  color: #362f21;
  font-family: "Petit Formal Script";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

#testimonials p {
  color: #7e7775;
  text-align: center;
  font-family: "Lato";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  text-transform: capitalize;
}

#testimonials .card {
  border-radius: 12px;
  color: #362f21;
  text-align: center;
}

#testimonials .card .card-title {
  font-family: "Frank Ruhl Libre";
  font-size: 20px;
  font-weight: 800;
  line-height: 183%;
  letter-spacing: 0.8px;
}

#testimonials .card .card-text {
  color: #362f21;
  font-family: "Lato";
  font-size: 19px;
  font-weight: 500;
  line-height: 139%;
  letter-spacing: 1.14px;
}

#testimonials .card .name {
  font-family: "Lato";
  font-size: 20px;
  font-weight: 800;
  line-height: 183%;
  letter-spacing: 0.8px;
}

#testimonials .card .customer {
  font-family: "Lato";
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 151%;
  letter-spacing: 1.14px;
}

#testimonials .carousel-indicators [id="corousalDot"] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 2px solid #362f21;
  background: transparent;
  transition: background-color 0.3s ease;
}

/* footer...  */

.footer {
  background-color: #362f21;
  color: #fff;
  position: relative;
}

.tiles-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.tiles-row img {
  flex: 1 1 20%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tile-sec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13px, 1fr));
}

.tile-sec img {
  width: 100%;
  height: auto;
}

.footer h5 {
  font-family: "inter";
  font-weight: 600;
  font-style: "semi-bold";
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #ffffff;
}

.footer h6 {
  font-family: "Frank Ruhl Libre", serif;
  color: #bcbcbc;
}

.footer a {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: #d1cfcf;
  text-decoration: none;
}

.footer .text-light {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: regular;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 74px;
  margin-top: 20px;
  color: #bcbcbc !important;
  max-width: 350px;
}

.footer a:hover {
  color: #ffffff;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom p {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
}

.watermark-logo {
  position: absolute;
  right: 0;
  top: 60px;
  height: 240px;
}

.corner-text img {
  margin-top: -4px;
}

/* ABOUT US ..............................  */

#hero-aboutUs {
  background: url("../images/aboutus/aboutUsHero.png") center center/cover
    no-repeat;
}

/* our team .......   */

#our-team .card-section {
  background-color: #362f21;
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 73px;
}

#our-team .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent;
  border: none;
  padding: 8px;
  margin-bottom: 2rem;
}

#our-team .image-wrapper:hover img {
  scale: 1.1;
  filter: brightness(70%);
  transition: 0.5s ease-in-out;
}

#our-team .image-wrapper img {
  transition: 0.5s ease-in-out;
}

.our-team.section-heading {
  color: #362f21;
  font-family: "Frank Ruhl Libre", serif;
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 2.5px;
  font-size: 60px;
  line-height: 42px;
  letter-spacing: 0%;
}

.our-team.section-heading span {
  font-family: "Petit Formal Script", "cursive";
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 0%;
}

#our-team .overlay-border {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  pointer-events: none;
}

#our-team h5 {
  font-family: "Frank Ruhl Libre";
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 42px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

.custom-shape-divider-top {
  position: relative;
  bottom: -5px;
}

.custom-shape-divider-top .shape-fill {
  fill: #362f21;
}

/* clients Carousel .......   */

#clients h2 {
  font-family: "Petit Formal Script";
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 4rem);
  line-height: 42px;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 61px;
}

#clientsCarousel .carousel-item p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: bottom;
}

/* Custom Control Styles */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
}

.carousel-control-prev .control-icon,
.carousel-control-next .control-icon {
  background-color: #6d6d6d4e;
  color: #0e09014e;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  transition: 0.3s ease;
}

.carousel-control-prev .control-icon:hover,
.carousel-control-next .control-icon:hover {
  color: #0e09014e;
  background-color: #3c3c3c4e;
  /* darker hover */
}

.card.iconShadow img {
  box-shadow: 0 0 12px 0px gray;
  padding: 30px;
  max-height: 300px;
  max-width: 300px;
  margin: auto;
  margin-top: 22px;
}

/* BRANDS......................   */

#brands h2 {
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(1.8rem, 5vw, 4rem);
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

#brands {
  margin-bottom: 90px;
}

#brands h2 span {
  font-family: "Petit Formal Script";
  font-weight: 400;
  font-style: Regular;
  line-height: 42px;
  letter-spacing: 0%;
  text-transform: uppercase;
}

/* certifications..........  */

#certifications h2 {
  font-family: "Petit Formal Script";
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 4rem);
  line-height: 42px;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 61px;
}

/* products page ................   */

#hero-products {
  background: url("../images/products/productPageHero.png") center center/cover
    no-repeat;
}

#productsPage .img-cover {
  overflow: hidden;
  max-height: 400px;
}

#productsPage .img-cover:hover img {
  scale: 1.05;
  filter: brightness(70%);
  transition: 0.5s ease-in-out;
}

#productsPage .img-cover img {
  transition: 0.5s ease-in-out;
}

/* CONTACT US..............  */

#hero-contactUS {
  background: url("../images/contactUS/contactUs-hero.jpg") center center/cover
    no-repeat;
}

/* Contact Info Section */
.contact-info {
  background-color: #2b241c;
  padding: 50px 0;
  position: relative;
  z-index: 10;
}

.contact-info .map {
  margin: 90px auto;
}

.contact-info .info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.contact-info .info-box .icon-cover {
  background: #fef9f6;
  padding: 12px;
  border-radius: 8px;
}

.contact-info .info-box span {
  font-family: "Lato";
  font-weight: 700;
  font-size: calmp(1rem, 2vw, 1.5rem);
  line-height: 100%;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 1);
}

.contact-info i {
  font-size: 1.4rem;
  color: #fff;
}

.contact-form h2 {
  margin-bottom: 42px;
}

.form-title {
  font-family: "Georgia", serif;
  font-size: 2rem;
}

.form-title em {
  font-style: italic;
  font-weight: 500;
}

textarea.form-control {
  resize: none;
}

.contact-section {
  margin-top: 130px !important;
  margin-bottom: 20px;
}

.contact-section .contact-form {
  margin-bottom: 64px;
  z-index: 10;
  position: relative;
}

.contact-section .contact-form .form-control-input {
  height: 42px;
}

.contactLogoBottom {
  position: absolute;
  right: 0;
  bottom: -229px;
}

/* ---------------- MEDIA QUERIES ---------------- */
/* For Extra small devices (phones, 575.98px and down) */
@media (max-width: 575.98px) {
  #navMenu {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0;
    box-shadow: 0px 4px 4px 0px #00000040;
  }

  .nav-Container {
    padding: 0;
  }

  .navbar-brand {
    margin: 0;
  }

  #products .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #products h2 {
    font-size: 1.8rem;
  }

  .explore-text {
    display: none;
  }

  .section-text {
    font-size: 1rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .btn-quote {
    display: block;
    margin: 0.5rem auto;
    width: 80%;
  }

  .btn-dark-custom {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow.left {
    left: 10px;
  }

  .slider-arrow.right {
    right: 10px;
  }

  .slider-arrow i {
    font-size: 18px;
  }

  #products {
    margin-top: 0px;
  }

  .bottom-line {
    width: 60px;
    height: 4px;
    margin: 2rem auto 0;
  }

  .bottom-line-thin {
    width: 150px;
    height: 2px;
    margin: 0 auto 2rem;
    left: 0;
    bottom: 0;
  }

  .why-us .imgDiv {
    width: 100%;
    border-radius: 120px 0 0 0;
  }

  .why-us .imgDiv img {
    border-radius: 120px 0 0 0;
  }

  .decor-box {
    width: 70px;
    height: 70px;
    bottom: -15px;
    left: -20px;
  }

  .dot-grid {
    top: -20px;
    right: 30px;
    width: 60px;
    height: 60px;
  }

  .section-title {
    text-align: center;
  }

  .section-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-bar {
    right: 0;
    margin-top: 2rem;
  }

  .stats-bar h3 {
    font-size: 2.5rem;
  }

  .stats-bar p {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .stat-box {
    border-right: none;
    margin-bottom: 1rem;
    border-bottom: 1px solid #000000;
    padding-bottom: 1rem;
  }

  .stat-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .left-latest-blog {
    width: 100%;
    text-align: center;
    padding: 0 1rem;
  }

  .latestBlogText {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .seeBtn {
    height: auto;
    width: auto;
    padding: 0.75rem 1.5rem;
    margin-top: 2rem !important;
    margin: auto;
  }

  .custom-card {
    height: 400px;
    margin-bottom: 1rem;
  }

  .carousel-indicators {
    justify-content: center;
  }

  #idea-reality .section-heading {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }

  #idea-reality .sub-heading {
    font-size: 1.5rem;
    text-align: center;
  }

  #idea-reality .description {
    font-size: 1rem;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }

  #idea-reality .btn-view {
    height: auto;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin: 0 auto;
    display: table;
  }

  .vertical-text,
  .vertical-text-left {
    display: none;
  }

  #core-values .section-heading {
    font-size: clamp(1.8rem, 5vw, 3rem);
    letter-spacing: 1px;
  }

  #core-values .description {
    font-size: 1rem;
  }

  #core-values .icon {
    left: 0;
    margin: 0 auto 0.5rem;
  }

  #core-values .icon-title {
    text-align: center;
  }

  #core-values .icon-sub-title {
    width: 100%;
    text-align: center;
  }

  #values-icons {
    padding: 3rem 0;
  }

  #values-icons .value-title {
    font-size: 1.2rem;
  }

  #values-icons .value-text {
    font-size: 0.9rem;
  }

  #testimonials h2 {
    font-size: 1.8rem;
  }

  #testimonials p {
    font-size: 1rem;
  }

  #testimonials .card .card-title {
    font-size: 1.1rem;
    letter-spacing: 0.4px;
  }

  #testimonials .card .card-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  #testimonials .card .name {
    font-size: 1.1rem;
    letter-spacing: 0.4px;
  }

  #testimonials .card .customer {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  .footer h5 {
    text-align: center;
  }

  .footer h6 {
    text-align: center;
  }

  .footer a {
    text-align: center;
    display: block;
  }

  .footer .text-light {
    text-align: center;
    margin: 1rem auto;
    font-size: 1rem;
  }

  .footer-bottom p {
    text-align: center;
    font-size: 1rem;
  }

  .watermark-logo {
    top: 487px;
  }

  .footer .column-first {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .footer .social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .last-tile {
    display: none;
  }

  .contact-info .map {
    margin: 40px auto;
  }

  .contact-info .info-box .icon-cover {
    padding: 6px;
  }

  .contact-info .info-box .icon-cover img {
    height: 24px;
  }

  .contact-section {
    margin-top: 60px !important;
    margin-bottom: 10px;
  }
}

/* Small devices (landscape phones, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  #navMenu {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0;
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 1rem;
  }

  .section-title {
    text-align: center;
  }

  .section-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .decor-box {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -30px;
  }

  .dot-grid {
    right: 0px;
  }

  .navbar-nav {
    gap: 1rem;
  }

  .btn-quote {
    margin-top: 1rem;
  }

  #products {
    margin-top: 100px;
  }

  .stats-bar {
    right: 0;
  }

  .left-latest-blog {
    text-align: center;
    padding: 0 2rem;
  }

  .seeBtn {
    margin: auto;
  }

  .carousel-indicators {
    justify-content: center;
  }

  #idea-reality .sub-heading {
    text-align: center;
  }

  #idea-reality .description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .outer-image-wrapper .vertical-text {
    left: -230px;
  }

  .outer-image-wrapper:hover .vertical-text {
    left: 288px;
  }

  .outer-image-wrapper .vertical-text-craft {
    left: -163px !important;
  }

  .outer-image-wrapper:hover .vertical-text-craft {
    left: 350px !important;
  }

  .outer-image-wrapper:hover .vertical-text-left {
    transition: all 1s ease;
    left: 355px !important;
  }

  #core-values .icon {
    margin: 0 auto 0.5rem;
  }

  #core-values .icon-title {
    text-align: center;
  }

  #core-values .icon-sub-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer h5,
  .footer h6,
  .footer a,
  .footer .text-light {
    text-align: center;
  }

  .footer-bottom p {
    text-align: center;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .contact-info .info-box {
    font-size: 0.9rem;
  }
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #navMenu {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0;
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 1rem;
  }

  .dot-grid {
    right: 150px;
  }

  #products h2 {
    margin-bottom: 1.5rem;
  }

  #products {
    margin-top: 100px;
  }

  .explore-text {
    left: -25px;
    font-size: 1.5rem;
  }

  .navbar-nav {
    gap: 1.5rem;
  }

  .stats-bar {
    right: 0;
  }

  .left-latest-blog {
    width: 90%;
  }

  #idea-reality .description {
    width: 100%;
  }

  .outer-image-wrapper .vertical-text {
    left: -190px;
  }

  .outer-image-wrapper:hover .vertical-text {
    left: 466px;
  }

  .outer-image-wrapper .vertical-text-craft {
    left: -127px !important;
  }

  .outer-image-wrapper:hover .vertical-text-craft {
    left: 530px !important;
  }

  #core-values .icon {
    left: 0;
    margin: 0 auto 0.5rem;
  }

  #core-values .icon-title {
    text-align: center;
  }

  #core-values .icon-sub-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .watermark-logo {
    position: relative;
    left: 508px !important;
  }
}

/* Large devices (desktops, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .stats-bar {
    right: 50px;
  }

  .outer-image-wrapper .vertical-text {
    left: -202px;
  }

  .outer-image-wrapper:hover .vertical-text {
    left: 278px;
  }

  .outer-image-wrapper .vertical-text-craft {
    left: -136px !important;
  }

  .outer-image-wrapper:hover .vertical-text-craft {
    left: 440px !important;
  }

  .outer-image-wrapper:hover .vertical-text-left {
    left: 400px;
  }
}

/* Swiperjs Css........... */

.swiperProduct {
  padding-bottom: 50px;
}

/* .swiper {
    width: 100%;
    max-width: 900px;
    height: 100%;
} */

.swiper .swiper-wrapper {
  padding-bottom: 80px;
}

.swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  border-radius: 10px;
}

.swiper-pagination {
  text-align: start !important;
  display: block !important;
}

.swiper .swiper-pagination-bullet {
  background-color: #adadad;
  border: 2px solid #fff;
  width: 12px;
  height: 12px;
}

.swiper .swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.swiper-product-pagination {
  width: 220px !important;
  background: gray;
  height: 4px;
  margin-top: 10px;
}

.swiper-product-pagination .swiper-pagination-bullet {
  background: transparent;
}

.swiper-product-pagination .swiper-pagination-bullet-active {
  background: #181717;
  width: 50px;
  position: absolute;
  bottom: 49px;
  border: none;
  border-radius: 25px;
  height: 6px;
}
