:root {
  --primary-color: rgba(83, 49, 30, 1);
  --Heading-font-size: 40px;
  --Sub-Heading-font-size: 16px;
  --Span-text-color: #A57865;
  --Heading-color: #000000;
  --sub-heading-color: #53311E;
  --btn-color: #53311E;
  --btn-color-white: #FFFFFF;
  --btn-text-color: #FFFFFF;
}

body {
  font-family: "Poppins", sans-serif !important;
}

#site-header {
  position: relative;
  z-index: 999;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

#site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  /* white background on scroll */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease forwards;
}

/* Smooth slide down animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

/* Sticky nav link color */
#site-header.sticky .nav-link {
  color: #A57865 !important;
}

/* Prevent content from jumping */
body.sticky-header-padding {
  padding-top: 80px;
}


.hero-wrapper {
  background: linear-gradient(253.06deg, #C0A18F 0%, #E8CCBF 21.79%, #AD8B7A 45.56%, #8C6D5A 72.3%, #7B5C4A 98.41%);
  color: #fff;
  /* padding: 100px 0; */
  overflow: visible;
  position: relative;
}


.navbar.contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 50px;
  background-color: #53311E !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  overflow: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 500 !important;
}

.navbar.contact-btn .btn-text,
i {
  /* background-color: #4e2b1c !important; */
  color: #ffffff !important;
}

/* Reserve space for both arrows */
.hover-arrow-left,
.hover-arrow-right {
  width: 20px;
  display: inline-block;
  transition: all 0.4s ease;
  color: inherit;
}

/* Initially, left arrow is hidden & translated left */
.hover-arrow-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}

/* Right arrow initially visible */
.hover-arrow-right {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* On hover */
.navbar.contact-btn:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.navbar.contact-btn:hover .hover-arrow-left {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.navbar.contact-btn:hover .hover-arrow-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
}

/* Slight shift to center appearance */
.navbar.contact-btn:hover .btn-text {
  transform: translateX(5px);
  transition: transform 0.4s ease;
}


.nav-link {
  position: relative;
  display: inline-block;
  color: #fff !important;
  padding-bottom: 4px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}


body.menu-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .top-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background-color: #000;
    z-index: 9999;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

    /* Animation base */
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
  }

  .top-drawer.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .top-drawer .nav-link {
    color: #fff;
    font-size: 20px;
    margin: 3px 0;
    font-weight: 500;
  }

  .top-drawer .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  .top-drawer .contact-btn {
    background-color: var(--btn-color, #0056b3);
    color: #fff;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 15px;
  }

  #burgerToggle {
    display: block;
  }
}

@media (min-width: 992px) {
  .top-drawer {
    display: none !important;
  }

  #burgerToggle {
    display: none !important;
  }
}

/* hero section starts here */

.hero-new {
  position: relative;
  padding: 100px 0 180px;
  color: #fff;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.hero-text p {
  margin: 30px 0;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
}

.hero-new .contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 50px;
  background-color: #4e2b1c !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.hero-new .contact-btn .btn-text,
.hero-new .contact-btn i {
  color: #ffffff !important;
}

.hover-arrow-left,
.hover-arrow-right {
  width: 20px;
  display: inline-block;
  transition: all 0.4s ease;
  color: inherit;
}

.hover-arrow-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}

.hover-arrow-right {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-new .contact-btn:hover {
  background-color: #000 !important;
  color: #ffffff !important;
}

.hero-new .contact-btn:hover .hover-arrow-left {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-new .contact-btn:hover .hover-arrow-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
}

.hero-new .contact-btn:hover .btn-text {
  transform: translateX(5px);
  transition: transform 0.4s ease;
}

.hero-image {
  position: absolute !important;
  right: 56px;
  top: 70px;
  z-index: 0;
}

.hero-image img {
  width: 850px;
  max-width: none;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.35));
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(20px);
  }

  40% {
    transform: translateY(20px);
  }

  70% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 3.2rem;
  }

  .hero-text p {
    font-size: 1.15rem;
  }

  .hero-image img {
    width: 800px;
  }
}

/* Large Tablet */
@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-new {
    padding: 90px 0 160px !important;
  }

  .hero-text p {
    font-size: 1.05rem;
  }

  .hero-new .contact-btn {
    padding: 14px 50px;
    font-size: 16px;
  }

  .hero-image img {
    width: 700px;
  }

}

/* Tablet */
@media (max-width: 991px) {
  .hero-new {
    text-align: center;
    padding: 80px 0 100px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
    text-align: left;
  }

  .hero-text p {
    font-size: 1rem;
    text-align: left;
  }

  .text-start {
    text-align: center !important;
  }

  .hero-image {
    position: inherit !important;
    margin-top: -60px;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 680px;
    transform: none;
    animation: floatY 4s ease-in-out infinite;
  }

  @keyframes floatY {
    0% {
      transform: translateY(0);
    }

    30% {
      transform: translateY(20px);
    }

    40% {
      transform: translateY(20px);
    }

    70% {
      transform: translateY(-15px);
    }

    100% {
      transform: translateY(0);
    }
  }
}


/* Mobile */
@media (max-width: 576px) {
     .hero-text h1 {
        font-size: 1.5rem;
        font-weight: 600;
    }

  .hero-new {
    padding: 20px 0 0px !important;
  }

  .hero-text p {
    font-size: 0.95rem !important;
    margin: 20px 0 !important;
  }

  br{
    display:none;
  }

  .hero-new .contact-btn {
    font-size: 14px;
    padding: 10px 24px;
  }

  .hero-image img {
    width: 100%;
    max-width: 380px;
    transform: none;
    animation: floatY 4s ease-in-out infinite;
  }

  @keyframes floatY {
    0% {
      transform: translateY(0);
    }

    30% {
      transform: translateY(20px);
    }

    40% {
      transform: translateY(20px);
    }

    70% {
      transform: translateY(-15px);
    }

    100% {
      transform: translateY(0);
    }
  }
}








/* about section starts here */

#about-container {
  margin-top: 55px !important;
}

.about-container {
  max-width: 1400px;
  margin: auto;
  padding: 100px 20px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 40px;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  min-width: 280px;
}

.about-left h6 {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  color: #6a3b14;
  text-align: left;
}

.about-left h2 {
  font-size: 34px;
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: left;
}

.sub-para {
  font-size: 16px;
  color: #777;
  margin-bottom: 24px;
  text-align: left;
}

.highlight {
  color: #6a3b14;
  font-weight: 700;
}

.about-left .tabs {
  display: flex !important;
  flex-wrap: wrap;
  margin-bottom: 24px;
  border-radius: 10px;
  gap: 12px;
}

.tab {
  flex: 1 1 120px;
  padding: 12px 16px;
  background-color: #f4f4f4;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #6a3b14;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tab:hover::after,
.tab.active::after {
  transform: scaleX(1);
}

.tab-content {
  font-size: 16px;
  color: #555;
  transition: opacity 0.4s ease;
  text-align: left;
}

.about-right {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.bg-box {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-color: #A57865;
  border-radius: 12px;
  z-index: 0;
}

.image-box-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}

.image-box {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* -------------------- Responsive Tweaks -------------------- */
@media (max-width: 992px) {

  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .about-left h2 {
    font-size: 30px;
  }

  .tab {
    flex: 1 1 10px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .about-left,
  .about-right {
    max-width: 100%;
  }

  .tabs {
    justify-content: center;
  }

  .tab {
    width: 100%;
  }

  .bg-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    z-index: 0;
  }
}

@media (max-width: 576px) {
  .about-container{
    padding: 30px 20px !important;
  }
  .about-left h2 {
    font-size: 24px;
  }

  .tab-content {
    font-size: 14px;
  }

  .sub-para {
    font-size: 14px;
  }

  .image-box-wrapper {
    padding: 10px;
  }
}

/* counter section here  */

.why-choose-us {
  padding: 60px 20px;
  background-color: #fff;

}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 0 15px;
}

.section-subtitle {
  text-transform: uppercase;
  font-size: 16px;
  color: #9F6D51;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

.section-subtitle .section-title {
  font-size: 34px !important;
  font-weight: 600;
  margin: 10px 0;
  color: #1d1d1f;
  text-align: left !important;
  margin-bottom: 20px !important;
}

.section-subtitle .section-title .highlight {
  color: #A57865;
  text-align: left !important;
}

.section-description {
  color: #757575;
  font-size: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.stat-card {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  background: #fff;
  transition: all 0.3s ease;
}

.stat-number {
  font-size: 65px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.stat-number .number {
  color: #1d1d1f;
}

.stat-number .suffix {
  color: #a6785e;
  margin-left: 4px;
}

.stat-card p {
  font-size: 14px;
  color: #444;
}

/* RESPONSIVE IMPROVEMENTS */

@media (max-width: 1200px) {
  .section-title {
    font-size: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stats-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .stat-card {
    padding: 15px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-card p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 22px;
  }

  .section-description {
    font-size: 14px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-card p {
    font-size: 12px;
  }
  .stat-card br{
    display: block !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}


/* types of last section here */

.shoe-last-section {
  padding: 60px 20px;
  background-color: #FAFAFA;
}

.sub-title {
  font-size: 1rem;
  color: #9F6D51;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.shoe-last-section .section-title {
  text-align: center;
  font-size: 2.15rem;
  font-weight: 500;
  color: #1d1d1d;
  margin-bottom: 40px !important;
}

.highlight {
  color: #A57865;
}

.shoe-last-section .container {
  max-width: 1140px;
  margin: 0 auto;
}

.shoe-last-section.row {
  display: flex;
  flex-wrap: wrap;
}

.content-new,
.images-new {
  padding: 15px;
}

.content-new {
  flex: 0 0 41.666%;
  max-width: 41.666%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.images-new {
  flex: 0 0 58.333%;
  max-width: 58.333%;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.custom-list-item {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}


/* Number styling */
.item-number {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
  text-align: left;
}

.item-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 20px;
}

.item-arrow {
  margin-left: auto;
  color: transparent;
  transition: color 0.3s ease;
}

.progress-bar-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background-color: #a05a3c;
  transition: width 0.3s ease;
}

.custom-list-item:hover .item-text,
.custom-list-item.active .item-text {
  color: #a05a3c !important;
}

.custom-list-item:hover .item-arrow,
.custom-list-item.active .item-arrow {
  color: #a05a3c !important;
}

.custom-list-item:hover .progress-bar-line,
.custom-list-item.active .progress-bar-line {
  width: 100%;
}


.image-wrapper {
  position: relative;
  max-width: 550px;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  border-radius: 10px;
}

.image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.image-text {
  position: absolute;
  top: 4%;
  right: 3%;
  color: #5d402e;
  font-weight: 500;
  ;
  font-size: 1rem;
  text-align: right;
  max-width: 90%;
  word-wrap: break-word;
  z-index: 3;
}

.btn-contact {
  position: absolute;
  bottom: 9px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 50px;
  background-color: #4c2b17;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
  z-index: 3;
}

/* Ensure text and icons stay white */
.btn-contact .btn-text,
.btn-contact i {
  color: #ffffff;
}

/* Reserve arrow space */
.hover-arrow-left,
.hover-arrow-right {
  width: 20px;
  display: inline-block;
  transition: all 0.4s ease;
  color: inherit;
}

/* Initially hide left arrow */
.hover-arrow-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}

/* Right arrow visible by default */
.hover-arrow-right {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Hover effect */
.btn-contact:hover {
  background-color: #000;
  color: #f1c27d;
}

.btn-contact:hover .hover-arrow-left {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.btn-contact:hover .hover-arrow-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
}

.btn-contact:hover .btn-text {
  transform: translateX(5px);
  transition: transform 0.4s ease;
}


.bg-diagonal {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 12px;
  background-color: #4c2b17;
  opacity: 0.9;
  z-index: 1;
}

.bg-1 {
  top: 40px;
  left: 162px;
}

.bg-2 {
  bottom: 40px;
  right: -23px;
}

/* ========== Responsive Styles ========== */


@media(max-width:1024px) {
  .bg-1 {
    left: 60px;
    top: 35px;
  }

  .bg-2 {
    right: -12px;
    bottom: 35px;
  }
}

/* Tablets and below */
@media (max-width: 992px) {

  .content-new,
  .images-new {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
  }

  .custom-list li {
    font-size: 1.125rem;
  }

  .image-text {
    font-size: 0.95rem;
  }

  .btn-contact {
    font-size: 0.95rem;
    padding: 8px 16px;
  }

  .image-wrapper {
    position: relative;
    max-width: 680px;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    border-radius: 12px;
  }

  .bg-1 {
    left: 30px;
    top: -20px;
    display: none;
  }

  .bg-2 {
    right: 30px;
    bottom: -20px;
    display: none;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .sub-title {
    font-size: 1.1rem;
  }

  .shoe-last-section .section-title {
    font-size: 1.5rem;
  }

  .custom-list li {
    padding: 14px 0;
    font-size: 1rem;
  }

  .custom-list li span {
    font-size: 1rem;
  }

  .image-wrapper {
    position: relative;
    max-width: 580px;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    border-radius: 12px;
  }

  .image-text {
    font-size: 0.85rem;
    max-width: 85%;
  }

  .btn-contact {
    font-size: 0.875rem;
    padding: 12px 20px;
  }

  .bg-diagonal {
    width: 80px;
    height: 80px;
  }

  .bg-1 {
    left: 92px;
    top: -4px;
  }

  .bg-2 {
    right: 92px;
    bottom: -4px;
  }
}

/* Very small screens */
@media (max-width: 576px) {

   .sub-title {
    font-size: 1rem;
    text-align: left;
  }
  .shoe-last-section.images-new {
    margin-top: 20px !important;
  }

  .shoe-last-section .section-title {
    padding-bottom: 0px !important;
    text-align: left;
  }

  .image-wrapper {
    position: relative;
    max-width: 480px;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    border-radius: 12px;
  }

  .custom-list-item {
    gap: 8px;
    padding: 12px 0;
  }

  .item-number {
    width: 30px;
    font-size: 0.9rem;
  }

  .item-text {
    font-size: 0.95rem;
  }

  .item-arrow {
    font-size: 0.9rem;
  }

  .btn-contact {
    position: relative;
    bottom: 90px;
    right: -57px;
    padding: 8px 12px;
    display: inline-block;

  }

  .image-text {
    font-size: 0.85rem;
    max-width: 85%;

  }

  .bg-1 {
    left: 10px;
    top: -3px;
    display: none;
  }

  .bg-2 {
    right: 10px;
    bottom: -3px;
    display: none;
  }

}

/* video section here */
.video-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Video Styling */
.embedded-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 100vh;
}


.video-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}


.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .embedded-video {
    max-height: 60vh;
  }
}

@media (max-width: 768px) {
  .embedded-video {
    max-height: 50vh;
  }
}

@media (max-width: 576px) {
  .embedded-video {
    max-height: 40vh;
    object-fit: contain !important;
  }
}

/* sector served */

.industry-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #FAFAFA;
}

.industry-section h6 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #9F6D51;
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
}

.industry-section h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: left;
}

.industry-section h2 span {
  color: #53311E;
}

.industry-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  position: relative;
  height: 100%;
  transition: 0.3s ease-in-out;
  border: 1px solid #E3E3E3;
}

.industry-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.industry-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #f4ece9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #593524;
  margin-bottom: 15px;
}

.industry-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* Corner borders */
.industry-card::before,
.industry-card::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 7px;
  background-color: #4e2b1c;
  transition: 0.3s ease;
}

.industry-card::before {
  top: 0;
  left: 0;
  border-radius: 10px;
}

.industry-card::after {
  bottom: 0;
  right: 0;
  border-radius: 10px;
}

.industry-card .corner {
  position: absolute;
  width: 7px;
  height: 100px;
  background-color: #4e2b1c;
  transition: 0.3s ease;
}

.corner.tl {
  top: 0;
  left: 0;
  border-radius: 10px;
}

.corner.br {
  bottom: 0;
  right: 0;
  border-radius: 10px;
}

/* On hover – show full corners */
.industry-card:hover::before,
.industry-card:hover::after {
  width: 100%;
}

.industry-card:hover .corner.tl,
.industry-card:hover .corner.tr,
.industry-card:hover .corner.bl,
.industry-card:hover .corner.br {
  height: 100%;
}

.contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 50px;
  background-color: #4e2b1c !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  overflow: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.contact-btn .btn-text,
i {
  /* background-color: #4e2b1c !important; */
  color: #ffffff !important;
}

/* Reserve space for both arrows */
.hover-arrow-left,
.hover-arrow-right {
  width: 20px;
  display: inline-block;
  transition: all 0.4s ease;
  color: inherit;
}

/* Initially, left arrow is hidden & translated left */
.hover-arrow-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}

/* Right arrow initially visible */
.hover-arrow-right {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* On hover */
.contact-btn:hover {
  background-color: #000 !important;
  color: #ffffff !important;
}

.contact-btn:hover .hover-arrow-left {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.contact-btn:hover .hover-arrow-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
}

/* Slight shift to center appearance */
.contact-btn:hover .btn-text {
  transform: translateX(5px);
  transition: transform 0.4s ease;
}

@media (max-width: 768px) {
  .industry-section h2 {
    font-size: 24px;
  }
}


/* testimonial section starts here */

.testimonial-section {
  padding: 60px 15px;
  background-color: #fff;
}

.testimonial-section h6 {
  color: #9F6D51;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: left;
}

.testimonial-section h2 {
  font-weight: 600;
  font-size: 40px;
  text-align: left;
}

.testimonial-section h2 span {
  color: #A57865;
}

.testimonial-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  background-color: #fff;
  height: 100%;
  position: relative;
  margin-right: 15px;
}

.testimonial-card .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-card .profile {
  display: flex;
  align-items: center;
}

.testimonial-card .profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

.testimonial-card .profile-info {
  line-height: 1.2;
  text-align: justify;
}

.testimonial-card .profile-info h5 {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-card .profile-info span {
  font-size: 13px;
  color: #777;
}

.testimonial-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 35px;
  text-align: justify;
}

.testimonial-card .quote-icon {
  position: absolute;
  right: 20px;
  bottom: -65px;
  font-size: 100px;
  color: #b18a76;
  opacity: 0.2;
}

.testimonial-slider.slick-slide {
  padding: 10px !important;
}

@media (max-width: 768px) {
  .testimonial-section h2 {
    font-size: 24px;
  }
}

/* certificate section here */
.certificate-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff; 
}

.certificate-image {
  max-width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* partner slider section section here */
.brand-slider {
  padding: 40px 20px;
  background-color: #A57865;
}

.partner-slider img {
  max-height: 65px;
  margin: auto;
  width: 220px;
  display: block;
  object-fit: contain;
}

/* Slick adds .slick-slide dynamically — this padding needs to go on .partner-slider > div */
.partner-slider .slick-slide {
  padding: 0 15px;
}

/*======== gallery section code here========= */

.gallery-section {
  padding: 60px 20px;
  text-align: center;
}

.gallery-section h6 {
  color: #9F6D51;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.gallery-section h2 {
  font-size: 2.15rem;
  font-weight: 500 !important;
  color: #000;
}

.gallery-section h2 span {
  color: #A57865;
}

.tabs {
  display: inline-flex;
  position: relative;
  /* border-bottom: 2px solid #ddd; */
}

.tab-btn {
  background: #F4F4F4;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  color: #1E1E1E;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  color: #1E1E1E;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 48px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #53311E;
  transform: scaleX(0);
  transform-origin: revert-layer;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.tab-btn:hover::after,
.tab-btn.active::after {
  transform: scaleX(1);
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.03);
}


@media (max-width: 768px) {
  .tab-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .gallery-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 40px 15px;
  }

   .gallery-section h6{
    text-align: left !important;
   }

  .gallery-section h2 {
    font-size: 1.4rem;
    text-align: left !important;
  }


  .tabs {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
    padding: 10px 135px;
    font-size: 14px;
    text-align: center;
  }

  .tab-btn::after {
    bottom: 40px;
    /* adjust underline position */
    height: 4px;
  }

  .gallery .col-12 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .gallery img {
    border-radius: 8px;
  }
}




/* =======================================footer starts here==================== */
/* FOOTER CSS */
.footer {
  background: linear-gradient(253.06deg, #C0A18F 0%, #E8CCBF 21.79%, #AD8B7A 45.56%, #8C6D5A 72.3%, #7B5C4A 98.41%);
  color: #fff;
  padding: 40px 20px 0 20px;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start !important;
}

.footer h6 {
  font-weight: 700;
  margin-bottom: 20px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-section {
  padding-top: 35px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item .circle {
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 16px;
  border: 1px solid #ffffff;
}

.contact-item a {
  color: #f0eae7;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #fff;
}

.social-icon {
  background: #e0cabd;
  color: #54311e;
  padding: 10px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 15px;
}

.social-icon .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background-color: #54311e;
}

.social-icon i {
  color: #fff;
  font-size: 20px;
}

.social-icon:hover {
  background: #3e1e13;
  transform: scale(1.05);
  color: #FFFFFF;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #f5e9e5;
  font-size: 15px;
}

.badge-new {
  background: #4a2c1b;
  color: white;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 12px;
  vertical-align: middle;
  margin-left: 6px;
}

@media (max-width: 767px) {
  .footer-logo img {
    max-width: 120px;
  }

  .footer h6 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer a {
    font-size: 14px;
  }

  .social-icon {
    font-size: 14px;
    padding: 8px 12px;
  }

  .social-icon .circle {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .social-icon i {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 14px;
  }

  .footer-section {
    padding-top: 20px;
  }

  .contact-item {
    font-size: 14px;
  }

  .contact-item .circle {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-right: 10px;
  }

  .contact-item a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 15px 0 15px;
  }

  .footer .row {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-logo img {
    max-width: 110px;
  }

  .footer h6 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer a {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .social-icon {
    font-size: 13px;
    padding: 8px 6px;
    margin-bottom: 10px;
  }

  .social-icon .circle {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }

  .social-icon i {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
    margin-top: 25px;
  }

  .footer-section {
    padding-top: 15px;
    width: 100%;
  }

  .contact-item {
    font-size: 13px;
  }

  .contact-item .circle {
    width: 34px;
    height: 34px;
    font-size: 13px;
    margin-right: 8px;
  }

  .contact-item a {
    font-size: 13px;
  }

  .badge-new {
    font-size: 11px;
    padding: 4px 6px;
  }
}




/* partnership form */

.contact-section {
  padding: 60px 15px;
}

.contact-label {
  font-size: 13px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-right: 15px;
}

.contact-info-icon i {
  color: black !important;
}

.shift p a {
  text-decoration: none;
}

.contact-card {
  margin-bottom: 30px;
}

.contact-form-box {
  background-color: var(--primary-color);
  padding: 50px;
  border-radius: 10px;
  color: #fff;
}

.contact-form-box h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
}

.contact-form-box p {
  font-size: 15px;
  margin-bottom: 30px;
  text-align: left;
}

.form-control {
  background-color: #ffece1 !important;
  border: none;
  border-radius: 8px;
  color: #fff;
}

.form-control::placeholder {
  color: #d0d0d0;
}

.form-control:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.submit-style {
  background-color: #ffffff !important;
  color: #000000 !important;
  text-align: right;
}

.submit-style .btn-text,
.submit-style i {
  color: #000000 !important;
}

.submit-style:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.submit-style:hover .btn-text,
.submit-style:hover i {
  color: #ffffff !important;
}


/* Responsive Adjustments */

@media (max-width: 1200px) {
  .contact-form-box {
    padding: 40px 30px;
  }

  .contact-form-box h2 {
    font-size: 32px;
  }

  .form-control {
    font-size: 16px;
  }

  .submit-style {
    padding: 12px 30px;
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .contact-form-box {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .contact-section .row {
    flex-direction: row;
  }

  .contact-label {
    text-align: left;
  }

  .contact-card {
    justify-content: left;
    text-align: left;
  }

  .contact-info-icon {
    margin-right: 10px;
  }

  .contact-form-box h2 {
    font-size: 26px;
  }

  .form-control {
    font-size: 14px;
  }

  .submit-style {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .contact-btn .btn-text {
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .contact-form-box {
    padding: 30px 20px;
  }

  .contact-form-box h2 {
    font-size: 24px;
  }

  .submit-style {
    padding: 12px 20px;
    font-size: 14px;
  }

  .contact-info-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .state {
    margin-bottom: 24px;
  }
}

/* location section here */

.location-card {
  background-color: #FAFAFA;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  text-align: left;

}

.location-card .icon-box {
  background: #f5f5f5;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: black
}

.location-card .icon-box i {
  font-size: 20px;
  color: #000000 !important;
}

.location-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.location-card p {
  margin: 0 0 6px;
  font-size: 15px;
  color: #444;
}

.location-style {
  background-color: #4e2b1c !important;
  color: #ffffff !important;
  padding: 10px 26px;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
}

.location-style .btn-text,
.location-style i {
  color: #ffffff !important;
}

.location-style:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.location-style:hover .btn-text,
.location-style:hover i {
  color: #ffffff !important;
}

.btn-location i {
  margin-left: 8px;
}

iframe {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  min-height: 300px;
  border: none;
}

@media (max-width:1200px) {
  .location-card {
    padding: 20px;
  }

  .location-card h6 {
    font-size: 18px;
  }

  .location-card p {
    font-size: 14px;
  }

  .location-card .btn-text {
    font-size: 11px;
  }

  iframe {
    min-height: 250px;
  }
}

@media (max-width: 768px) {

  .location-card,
  iframe {
    margin-bottom: 30px;
  }
}


/* whatsapp  floating icon */

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  z-index: 9999;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: pulse 1.5s infinite ease-out;
}

/* Hover effect */
.whatsapp-float:hover {
  background-color: #20b556;
  transform: scale(1.1);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 26px;
    line-height: 50px;
  }
}