@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Lora:ital,wght@0,400..700;1,400..700&display=swap);
body,
main {
  background-color: var(--body-bg);
}
a,
a:hover {
  text-decoration: none;
}
.videoBtn,
.videoBtn::before {
  animation: 0.8s infinite alternate breathe;
}
.heading h6,
.smallHeading {
  font-weight: 600;
}
:root {
  --primary-color: #a26e4d;
  --secondary-color: #f8f3f0;
  --secondary-color-dark: #f0e6df;
  --body-color: #515151;
  --body-bg: #fff;
  --light: #f9f9f9;
  --gradient: radial-gradient(circle at 120% -30%, #c27541, transparent),
    linear-gradient(
      45deg,
      #e7a37a,
      var(--primary-color),
      #c38259,
      #e7a37a,
      var(--primary-color),
      var(--primary-color),
      #cc9878,
      var(--primary-color)
    );
  --midsun: "Mid Mid Sun Sun";
  --serif: "Lora", serif;
  --sans: "Open Sans", sans-serif;
  --anglecia: "Anglecia Pro Dsp", serif;
  --facebook: #4267b2;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
  --linkedin: #0087e7;
  --header-height: 78px;
  --footer-height: 405px;
  --primary-radius: 2em;
}
::selection {
  background-color: #a26e4d;
  color: #fff;
  text-shadow: 0 4px 14px #000;
}
body {
  color: var(--body-color);
  font: 400 1rem var(--sans);
  overflow-x: hidden;
}
main {
  position: relative;
  isolation: isolate;
  z-index: 1;
}
p {
  line-height: 1.5;
}
a {
  color: inherit;
}
a:hover {
  color: var(--primary-color);
}
.icon-circular,
.icon-circular.solid,
i.icon-circular,
i.icon-circular:hover {
  color: var(--body-bg);
}
.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
ul {
  padding-left: 0;
  margin-bottom: 0;
}
iframe,
img,
svg,
video {
  width: 100%;
  display: block;
}
svg:not([fill]) {
  fill: currentColor;
}
.gap-row {
  row-gap: 30px;
}
.gap-form-row {
  row-gap: 10px;
}
.rounded {
  border-radius: 10px !important;
}
.object-cover {
  object-fit: cover;
}
.container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
}
.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}
.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}
.hero__gradient {
  position: fixed;
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  width: 200em;
  height: 200em;
  margin-right: -135.7em;
  margin-bottom: -133.1em;
  background-image: radial-gradient(
    circle farthest-corner at 50% 50%,
    #5c31ff,
    rgba(92, 49, 255, 0) 69%
  );
  pointer-events: none;
  opacity: 0.9;
  z-index: -1;
}
.icon-circular,
.videoBtn {
  width: 40px;
  height: 40px;
  transition: 0.3s ease-in-out;
}
.heading,
.heading > img,
.headingContainer {
  margin-bottom: 1.5rem;
}
.position-relative,
.videoBtn {
  z-index: 1;
}
.hero__gradient.is--other {
  width: 160em;
  height: 160em;
  margin-right: -40.6em;
  margin-bottom: -133.7em;
  background-image: radial-gradient(
    circle farthest-corner at 50% 50%,
    #f88cd4,
    rgba(248, 140, 212, 0) 69%
  );
  opacity: 0.73;
}
.icon-circular {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
}
.controls a:focus,
.controls a:hover,
.text-primary {
  color: var(--primary-color) !important;
}
i.fa-facebook-f {
  color: var(--facebook);
}
i.fa-youtube {
  color: var(--youtube);
}
i.fa-whatsapp {
  color: var(--whatsapp);
  font-size: 20px;
}
i.fa-instagram {
  color: var(--instagram);
}
i.fa-linkedin-in {
  color: var(--linkedin);
}
.icon-circular.fa-facebook-f:hover,
.icon-circular.solid.fa-facebook-f {
  background-color: var(--facebook) !important;
}
.icon-circular.fa-youtube:hover,
.icon-circular.solid.fa-youtube {
  background-color: var(--youtube) !important;
}
.icon-circular.fa-whatsapp:hover,
.icon-circular.solid.fa-whatsapp {
  background-color: var(--whatsapp) !important;
}
.icon-circular.fa-instagram:hover,
.icon-circular.solid.fa-instagram {
  background-color: var(--instagram) !important;
}
.icon-circular.fa-linkedin-in:hover,
.icon-circular.solid.fa-linkedin-in {
  background-color: var(--linkedin) !important;
}
i svg {
  width: 16px;
}
.line {
  position: absolute;
  background-color: rgb(0 0 0 / 15%);
}
.line.verticle {
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}
.text-justify {
  text-align: justify;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-midsun {
  font-family: var(--midsun);
  letter-spacing: 1.5px;
}
.text-serif {
  font-family: var(--serif);
}
.text-sans {
  font-family: var(--sans);
}
.text-anglecia {
  font-family: var(--anglecia);
  font-style: italic;
  letter-spacing: normal !important;
}
.modal-header,
.smallHeading {
  font-family: var(--midsun);
  letter-spacing: 2px;
}
.text-primary-light {
  color: color-mix(
    in srgb,
    var(--primary-color) 60%,
    var(--secondary-color) 60%
  ) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.text-secondary-light {
  color: var(--secondary-light-color) !important;
}
.text-secondary-dark {
  color: var(--secondary-color-dark) !important;
}
.text-dark {
  color: var(--body-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.bg-secondary-dark {
  background-color: var(--secondary-color-dark) !important;
}
.bg-dark,
.readmore .button.bg-light:hover,
.readmore .button.bg-secondary:hover {
  background-color: var(--body-color) !important;
  color: #fff;
}
.bg-light {
  background-color: var(--light) !important;
}
.bg-sec {
  background: url(../images/bg.webp) center/cover;
}
.bg-gradient {
  background-image: radial-gradient(circle at 120% -30%, #c27541, transparent),
    linear-gradient(
      45deg,
      #e7a37a,
      var(--primary-color),
      #c38259,
      #e7a37a,
      var(--primary-color),
      var(--primary-color),
      #cc9878,
      var(--primary-color)
    ) !important;
  color: #fff;
}
.bg-gradient-light {
  background-image: linear-gradient(135deg, #fdfcfb 0, #e2d1c3 100%);
}
.bg-gradient-light.has_watercolor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 50% -50%,
      rgb(255 255 255 / 70%),
      transparent 30%
    ),
    url(../images/props/sunset-sky.jpg) center/cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.bg-image {
  background: center/cover no-repeat fixed;
}
.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 75%);
  z-index: -1;
}
.bg-circle::before,
.videoBtn {
  background-color: var(--primary-color);
  position: absolute;
}
.bg-circle::before {
  content: "";
  inset: 0;
  opacity: 0.1;
  clip-path: circle(60% at 90% -20%);
  z-index: -1;
  pointer-events: none;
}
/* .readmore .button,
button[class^="carousel-control"]:hover,
div[class^="swiper-button"]:hover {
  background-color: #a26e4d;
} */
.readmore .button,
div[class^="swiper-button"]:hover {
  background-color: #a26e4d;
}

button[class^="carousel-control"]:hover {
  background-color: #fff !important;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a26e4d' stroke='%23a26e4d' stroke-width='1.5'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a26e4d' stroke='%23a26e4d' stroke-width='1.5'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.videoBtn {
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-icons h6,
.readmore .button.stroke,
.smallHeading,
.viewmore .button:hover {
  color: var(--primary-color);
}
.videoBtn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(255 255 255 / 75%);
  background-image: radial-gradient(
    circle at 50% 50%,
    var(--primary-color) 30%,
    rgb(0 0 0 / 75%) 40%
  );
  z-index: -1;
  transition: 0.3s ease-in-out 0.1s;
}
.heading,
.readmore .button {
  z-index: 1;
  position: relative;
}
@keyframes breathe {
  100% {
    scale: 1.2;
  }
}
.videoBtn:hover {
  scale: 1.2;
}
.videoBtn:hover::before {
  scale: 1.2;
  border-color: #fff;
}
.scroller {
  overflow: auto;
  padding-right: 10px;
}
.scroller::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--body-color);
  border-radius: 10px;
}
.scroller::-webkit-scrollbar-thumb {
  background: var(--body-color);
  border-radius: 10px;
}
.scroller::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
.headingContainer.d-flex {
  justify-content: space-between;
  align-items: center;
}
.heading {
  /* display: table; */
  font-family: var(--midsun);
}
.heading :is(.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6) {
  letter-spacing: 2.5px;
}
.heading.hasline {
  --wd: 100px;
  /* padding-bottom: 1rem; */
  margin-bottom: 1rem;
}

/* .heading.hasline::before {
  content: "";
  position: absolute;
  left: calc(50% - (var(--wd) / 2));
  bottom: 0;
  width: var(--wd);
  border-bottom: 1px solid var(--primary-color);
} */
.heading.white.hasline::before {
  border-bottom-color: rgb(255 255 255 / 50%);
}
.heading .h1 {
  font-weight: 200;
}
.heading .h1 strong {
  font-weight: 800;
}
.heading h6 {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.heading h4,
.heading h5 {
  font-weight: 400;
  line-height: 1.5;
}
.heading > img {
  width: 250px;
}
.viewmore {
  width: 100%;
  margin-top: 1.25rem;
}
.viewmore .button {
  text-transform: uppercase;
  color: var(--body-color);
  font-size: 67.5%;
  font-weight: 700;
}
.readmore {
  width: 100%;
  margin-top: 2.5rem;
}
.readmore.d-flex {
  gap: 10px;
  flex-wrap: wrap;
}
.readmore .button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1.5rem;
  min-width: 150px;
  max-width: fit-content;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.carousel-indicators [data-bs-target],
.readmore .button.inverse,
.readmore .button.stroke:hover,
.readmore .button:hover {
  background-color: var(--primary-color);
}
.readmore .button.button-sm {
  padding: 10px 1rem;
  min-width: 110px;
}
.readmore button {
  width: max-content;
  background: 0 0;
  border: 0;
}
.readmore .button.stroke {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.readmore .button.stroke:hover {
  color: #fff;
  border-color: transparent;
}
.readmore .button.inverse:hover {
  background-color: var(--secondary-color-dark);
  color: var(--body-color);
}
.readmore .button.bg-light,
.readmore .button.bg-secondary {
  color: var(--body-color);
}
.elegant-btn-design {
  width: 170px;
  height: 170px;
  position: absolute;
  z-index: 9;
}
.elegant-btn-design a {
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--beige);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 100;
}
.circular-btn .button,
.controls a {
  color: var(--primary-color);
  text-align: center;
}
.elegant-btn-design a svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: translateX(0.25px);
}
.elegant-btn-design a svg rect {
  rx: 100px;
  ry: 100px;
  stroke: var(--primary-color);
  fill: none;
  stroke-width: 1.25;
  width: calc(100% - 2px);
  height: calc(100% - 1px);
  stroke-dasharray: 321%;
  stroke-dashoffset: 642%;
  transition-property: stroke-dashoffset, transform;
  transform-origin: 50% 50%;
  transition-duration: 1.3s;
  transition-timing-function: cubic-bezier(0.74, 0, 0.24, 0.99);
}
.elegant-btn-design a svg rect + rect {
  stroke: var(--secondary-color);
  stroke-dashoffset: 321%;
}
.elegant-btn-design a:hover svg rect {
  transform: rotate(0);
  stroke-dashoffset: 321%;
}
.elegant-btn-design a:hover svg rect + rect {
  stroke-dashoffset: 0%;
}
.circular-btn .button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.bar-controls,
.swiper-controls {
  align-items: center;
  display: flex;
}
.circular-btn .button:hover {
  color: #fff;
  background-color: var(--primary-color);
}
.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}
.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  font-size: 13px;
  border-bottom: 1px solid;
  opacity: 1;
}
button[class^="carousel-control"],
div[class^="swiper-button"] {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 50%;
}
.controls a:last-child {
  border-bottom: none;
}
.controls a:focus,
.controls a:hover {
  opacity: 1;
}
.multiply {
  mix-blend-mode: multiply;
}
button[class^="carousel-control"] {
  top: 50%;
  bottom: auto;
  background-color: var(--secondary-color);
  opacity: 1;
}

button[class^="carousel-control-prev"]::after {
  content: "";
  border: 1px solid #fff;
  position: absolute;
  top: -10px;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

button[class^="carousel-control-next"]::after {
  content: "";
  border: 1px solid #fff;
  position: absolute;
  top: -10px;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.carousel-control-next {
  right: 2rem;
}
.carousel-control-prev {
  left: 2rem;
}
button[class^="carousel-control"] span {
  background-size: 40%;
}
/* added on 23-01-2026 */
/* Smooth carousel slide transitions */
#banner.carousel {
  overflow: hidden;
}

#banner .carousel-inner {
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform;
}

#banner .carousel-item {
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#banner .carousel-item.active {
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#banner .carousel-item.carousel-item-next:not(.carousel-item-start),
#banner .carousel-item.carousel-item-prev:not(.carousel-item-end) {
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
/* end of smooth carousel slide transitions 23-01-2026 */

.carousel-indicators.position-static {
  margin-bottom: 0;
  margin-top: 3rem;
}
div[class^="swiper-button"] {
  background-color: transparent;
  color: #fff;
  background-color: var(--primary-color);
  transition: 0.3s ease-in-out;
}
div[class^="swiper-button"]:hover {
  color: #fff;
  box-shadow: 0 10px 2rem rgb(0 0 0 / 10%);
}
div[class^="swiper-button"]:after {
  color: inherit;
  font-size: 13px;
}
div[class^="swiper-button"].lg {
  width: 60px;
  height: 60px;
  margin-top: -30px;
  color: #fff;
  border: 1px solid;
}
div[class^="swiper-button"].lg:hover {
  backdrop-filter: blur(5px) brightness(2);
  border-color: transparent;
}
div[class^="swiper-button"].lg:after {
  font-size: 1rem;
  font-weight: 100;
  color: #fff;
}
.swiper-controls {
  position: relative;
  margin: 2rem auto 0;
  width: 260px;
  justify-content: center;
  gap: 1rem;
}
.swiper-controls div[class^="swiper-"] {
  position: static;
  margin-top: 0;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}
.form-control,
.form-control:focus,
.form-control[readonly] {
  background-color: transparent;
}
.bar-controls {
  position: relative;
  justify-content: space-between;
  padding: 10px;
}
.bar-controls .bar-arrows {
  position: relative;
  width: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bar-controls .bar-arrows > div {
  position: static !important;
  margin-top: 0 !important;
  width: 40px;
  height: 40px;
  background-size: 22px;
}
.bar-controls .swiper-horizontal > .swiper-pagination-progressbar,
.bar-controls .swiper-pagination-progressbar.swiper-pagination-horizontal {
  position: static;
  width: calc(100% - 120px);
}
.bar-controls
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color),
    var(--secondary-color)
  );
}
.form-group {
  margin-bottom: 20px;
}
.form-group > label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}
label {
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
}
.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid;
  outline: 0;
  padding: 1rem 0;
}
.form-control.form-select {
  padding-right: 2.5rem;
}
.form-control::placeholder {
  font-size: 13px;
}
textarea.form-control {
  padding: 1rem 0.75rem;
}
.form-control.form-control-light {
  border-bottom-color: rgb(255 255 255 / 25%);
  color: #fff;
}
.form-control.form-control-light::placeholder {
  color: #8f8f8f;
}
.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--body-color);
}
.form-control.form-control-light:focus {
  border-bottom-color: var(--body-bg);
}
.custom-control-inline {
  margin-right: 0;
  padding-left: 0;
  width: 100%;
  display: block;
  position: relative;
}
.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-label {
  display: block;
  position: relative;
  padding: 13px 10px 13px 2rem;
  background-color: #fff;
  border-bottom: 1px solid transparent;
  border-radius: 3px;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}
.custom-control-label::after {
  position: absolute;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: radial-gradient(#fff 50%, transparent 50%) 50%/50% 50% no-repeat;
}
.custom-control-label::after,
.custom-control-label::before {
  border-radius: 50%;
  top: 15px;
  left: 10px;
}
.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(249, 1, 1, 0.25);
}
.modal-backdrop.show {
  opacity: 1;
  background-color: rgba(51 51 51 / 80%);
  backdrop-filter: blur(4px);
}
.modal-content {
  background-color: var(--secondary-color);
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border: 0;
  border-radius: 0;
}
button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bs-danger);
  border: 0;
  opacity: 1;
  text-shadow: none;
  z-index: 9;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: #ae0000;
  color: #fff;
}
.modal-body {
  padding: 25px;
  text-align: left;
}
.iconBox .inner,
.modal-icons {
  display: flex;
  padding: 1rem;
  text-transform: uppercase;
}
.blogBox1,
.blogBox1 .date,
.blogBox1 h6,
.iconBox .inner,
.modal-icons {
  text-align: center;
}
.modal-logo {
  width: 180px;
  margin: 0 auto 2rem;
}
.modal-header {
  background-color: var(--primary-color);
}
.modal-icons {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: var(--secondary-color-dark);
}
.modal-icon .img-fluid {
  max-width: 50px;
  margin: 0 auto 10px;
  color: var(--secondary-color);
}
.modal-icon span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--darkgray);
}
.modal-body .form-control {
  background-color: rgb(0 0 0 / 5%);
}
.modal-body .form-control:focus {
  background-color: var(--body-bg);
}
.swiper-slide.iconBox {
  height: auto;
}
.iconBox .inner {
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--primary-color);
}
.iconBox .inner .ikon {
  width: 40px;
}
.iconBox .inner .ikon svg {
  fill: var(--primary-color);
}
.list {
  padding-left: 20px;
}
.list li {
  margin-bottom: 10px;
}
.list li::marker {
  color: var(--primary-color);
}
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.rightTranslate,
.topTranslate {
  -webkit-transition: 1s;
  opacity: 0;
}
.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  transition: 1s;
}
.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  transition: 1s;
}
.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: 1s;
  transition: 1s;
}
.zoomOut {
  transform: scale(0);
  transition: 0.8s ease-in-out;
}
.zoomIn {
  transform: scale(1);
}
.blogBox1 {
  padding: 4rem;
  background: #fff;
}
.blogBox1 .carousel-control-prev {
  left: 1rem;
}
.blogBox1 .carousel-control-next {
  right: 1rem;
}

/* Snow Effect Styles */
#banner {
  position: relative;
}

#banner .stage {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

#banner .stage span {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 1);
  border-radius: 50%;
}

/* First Slide Hero Text Styling */
#banner .carousel-item:first-child .heroText-first-slide,
#banner .carousel-item.active:first-child .heroText-first-slide {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  text-align: left;
  position: absolute;
  top: 70%;
  left: 20%;
  width: 450px;
}

#banner .carousel-item:first-child .heroText-first-slide .heading,
#banner .carousel-item.active:first-child .heroText-first-slide .heading {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

#banner .carousel-item:first-child .heroText-first-slide h3,
#banner .carousel-item.active:first-child .heroText-first-slide h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #a26e4d;
  margin-bottom: 0.5rem;
}

#banner .carousel-item:first-child .heroText-first-slide h4,
#banner .carousel-item.active:first-child .heroText-first-slide h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

#banner .carousel-item:first-child .heroText-first-slide .borderLine,
#banner .carousel-item.active:first-child .heroText-first-slide .borderLine {
  width: 80px;
  height: 2px;
  background-color: #fff;
  margin: 0.5rem 0 1rem 0;
}

#banner .carousel-item:first-child .heroText-first-slide p,
#banner .carousel-item.active:first-child .heroText-first-slide p {
  color: #fff;
  font-size: 13px !important;
  /* line-height: 1.6; */
  margin-top: 1rem;
}

@media (max-width: 768px) {
  #banner .carousel-item:first-child .heroText-first-slide,
  #banner .carousel-item.active:first-child .heroText-first-slide {
    /* padding: 1.5rem;
    margin-left: 3%;
    margin-top: 8%;
    max-width: 90%; */
    left: 40%;
    top: 12%;
    width: 300px !important;
  }

  #banner .carousel-item:first-child .heroText-first-slide h3,
  #banner .carousel-item.active:first-child .heroText-first-slide h3 {
    font-size: 1.25rem;
  }

  #banner .carousel-item:first-child .heroText-first-slide h4,
  #banner .carousel-item.active:first-child .heroText-first-slide h4 {
    font-size: 1rem;
  }

  #banner .carousel-item:first-child .heroText-first-slide p,
  #banner .carousel-item.active:first-child .heroText-first-slide p {
    font-size: 0.9rem;
  }
}

/* CTA Box - Banner Carousel WhatsApp Button */
#banner .cta-box {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
}

.cta-box .whatsappBtn {
  background-color: var(--whatsapp);
  color: #fff;
  padding: 4px 4px 4px 1rem;
  margin-left: 1.5rem;
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 0 8px rgba(61, 251, 105, 0.45), 0 0 0 15px rgba(33, 164, 40, 0.63), 1rem 1rem 2rem rgb(0 0 0 / 25%);
  animation: enq 2s cubic-bezier(0.55, 0.76, 0.27, 1.29) infinite;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta-box .whatsappBtn span {
  display: flex;
  align-items: center;
}

.cta-box .whatsapp-icon-wrapper {
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whatsapp);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cta-box .whatsapp-icon-wrapper i {
  color: var(--whatsapp);
}

@keyframes enq {
  50% {
    box-shadow: 0 0 0 1px rgb(14 121 0 / 45%), 0 0 0 0px rgb(11 74 0 / 63%),
      1rem 1rem 2rem rgb(0 0 0 / 25%);
  }
}

.cta-box .whatsappBtn:hover {
  background-color: #fff;
  color: var(--whatsapp);
  animation-play-state: paused;
  transform: translateY(-2px);
}

.cta-box .whatsappBtn:hover .whatsapp-icon-wrapper {
  background-color: var(--whatsapp);
}

.cta-box .whatsappBtn:hover .whatsapp-icon-wrapper i,
.cta-box .whatsappBtn:hover .whatsapp-icon-wrapper {
  color: #fff !important;
}

@media (max-width: 768px) {
  #banner .cta-box {
    bottom: 1.5rem;
    left: 1rem;
  }
  
  .cta-box .whatsappBtn {
    padding: 3px 3px 3px 0.75rem;
    font-size: 0.75rem;
    margin-left: 0;
  }
  
  .cta-box .whatsapp-icon-wrapper {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

/* Logo Max Width */
.header .logo img {
  max-width: 150px;
  width: auto;
  height: auto;
}

@media (max-width: 500px) {
  button[class^="carousel-control-prev"]::after {
    display: none;
  }

  button[class^="carousel-control-next"]::after {
    display: none;
  }
  
  #banner .cta-box {
    bottom: 1rem;
    left: 0.75rem;
  }
  
  .cta-box .whatsappBtn {
    padding: 2px 2px 2px 0.5rem;
    font-size: 0.7rem;
    gap: 6px;
  }
  
  .cta-box .whatsapp-icon-wrapper {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}
