:root {
  --primary-color: #E07446;
  --secondary-color: #f3e5d8;
  --tertiary-color: #edd8c9;
  --black-color: #010101;
  --white-color: #ffffff;
}

body {
  font-family: "Montserrat", serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
.text-primary-color{
    color: var(--primary-color);
}
.btn-primary {
  border: 0;
  background-color: var(--primary-color);
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.btn-primary:hover {
  border: 0;
  background-color: var(--black-color);
  color: var(--secondary-color);
  padding: 15px 25px;
}
p {
  font-weight: 500;
}
.bg-light {
  background-color: var(--secondary-color) !important;
}

.section-head h3 {
  position: relative;
  padding: 0;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
}

.section-head h3:before {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.section-head p {
  /* color: var(--tertiary-color); */
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.item2 {
  background: var(--white-color);
  text-align: start;
  padding: 30px 25px;
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  transition: all 0.5s ease 0s;
}

.item2:hover {
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
}

.item2 .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: var(--primary-color);
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50%;
}

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

.grid-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color) !important;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  text-decoration: underline;
}
.card-img-top {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.tranformationSectionImg {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
#stickyDiv {
    position: sticky;
    top: 0;
    padding: 20px;
    background-color: #fff;
    border-top-right-radius: 10px;
    border-top: 4px solid var(--primary-color);
    background-origin: border-box;
    background-clip: padding-box, border-box;
  }


#stickyDiv.hidden {
    display: none; /* This hides the sticky div completely */
  }
.ctaBg{
    background-color: var(--primary-color);
 

}

@keyframes slides {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .logos {
    overflow: hidden !important;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
  }
  
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    content: "";
    width: 250px;
    height: 100%;
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    /* background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255)); */
  }
  
  .logos:after {
    right: 0;
    /* background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255)); */
  }
  
  .logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
  }
  
  /* .logos:hover .logo_items {
    animation-play-state: paused;
  } */
  
  .logo_items img {
    height: 50px;
  }
  @media screen and (max-device-width: 480px) and (orientation: portrait) {
    .fs-5,.fs-4 {
        font-size: 1rem !important;
    }
    .stickyText{
        font-size: 18px;
    }
}