@import url("https://fonts.googleapis.com/css2?family=Kapakana:wght@300..400&family=Lobster&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background: #ffe7c6;
}

input:focus,
button:focus,
textarea:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: #9b9696;
  transition: background-color 0.3s, color 0.3s;
}

/* Example styles */
.nav-link.active {
  color: #fff !important;
  /* Text color for active link */
  border-radius: 5px;
  /* Optional: rounded corners */
}

.nav-link:hover {
  color: #fff;
  background-color: #f2cb9569;
}

.custom-toggler .burger-icon,
.custom-toggler .burger-icon::before,
.custom-toggler .burger-icon::after {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.navbar-dark .navbar-toggler.custom-toggler {
  border-color: transparent !important;
  color: inherit !important;
  outline: none !important;
  box-shadow: none !important;
}
.navbar-toggler {
  padding: 0.25rem 1.5rem !important;
}
#hero {
  /* background: url('./img/vismayagold_banner1.jpg') no-repeat center center/cover; */
  min-height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;

  background-color: #50252f;
}

.carousel-bg {
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

#hero .carousel-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.carousel {
  position: unset !important;
}
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 100vh;
}

#heroCarousel img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  #heroCarousel .carousel-item img {
    display: none !important;
  }
  #heroCarousel .carousel-item {
    background-size: cover;
    background-position: center;
  }
  #heroCarousel .carousel-item:nth-child(1) {
    background-image: url("img/vismayagold_banner1_mobile.jpg");
  }
  #heroCarousel .carousel-item:nth-child(2) {
    background-image: url("img/vismayagold_banner2_mobile.jpg");
  }
  #heroCarousel .carousel-item:nth-child(3) {
    background-image: url("img/vismayagold_banner3_mobile.jpg");
  }
  #heroCarousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity here */
    z-index: 1;
  }

  #heroCarousel .carousel-item {
    position: relative;
  }

  #heroCarousel .carousel-item .carousel-caption {
    position: relative;
    z-index: 2;
  }
}

#hero .hero-content {
  z-index: 0 !important;
}

#hero .overlay,
#hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.logo {
  position: absolute;
  top: 3%;
  left: 3%;
}

.logo img {
  max-height: 120px;
}

.hero-text {
  z-index: 1;
  text-align: right;
  padding-left: 7vw;
  padding-right: 2vw;
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: 100%;
}

.hero-text h1 {
  font-size: 3.5rem;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1;
  font-family: "Lobster", sans-serif;
  color: #f2cc95;
}

.hero-text h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #f2cc95;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero-text p {
  color: #9b9a9a;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.4;
}

.main-heading {
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Chat Menu */

.chat-icon {
  width: 3.5rem;
  height: 3.5rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #f2cc95;
  color: #50252f;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.chat-icon:hover {
  background-color: #50252f;
  color: #f2cc95;
}

.chat-menu {
  position: fixed;
  bottom: 6.3rem;
  right: 2.1rem;
  background: #ffffff54;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 55px;
  align-items: center;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  z-index: 999;
}

.chat-menu.show {
  display: flex;
  transform: scale(1);
  opacity: 1;
}

.chat-menu a {
  color: #50252f;
  font-size: 1.8rem;
  transition: transform 0.2s ease-out, color 0.3s;
  opacity: 0;
  transform: scale(0);
}

.chat-menu.show a {
  opacity: 1;
  transform: scale(1);
  font-size: 1.5rem;
}

.chat-menu a:hover {
  color: #f2cc95;
  transform: scale(1.2);
}

@media (max-width: 767.98px) {
  #hero {
    text-align: center;
  }
  .hero-text {
    padding-right: 6vw;
  }
  .hero-form {
    margin-top: 2rem;
  }

  .social-list {
    justify-content: center !important;
  }
}

@media (max-width: 992px) {
  .navbar {
    background-color: rgba(0, 0, 0, 0.7);
    /* add a background on scroll or collapse */
  }

  .navbar-brand img {
    max-height: 90px;
    /* smaller logo for mobile */
    width: 90px;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 1rem;
  }

  .navbar-nav .nav-item {
    margin: 0.5rem 0;
    text-align: center;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    background-color: #f2cb9569;
  }
}

.burger-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #cfa466;
  transition: all 0.3s ease-in-out;
}

.burger-icon::before,
.burger-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #cfa466;
  transition: all 0.3s ease-in-out;
}

.burger-icon::before {
  top: -8px;
}

.burger-icon::after {
  top: 8px;
}

.custom-toggler.open .burger-icon {
  background-color: transparent;
}

.custom-toggler.open .burger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.custom-toggler.open .burger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Optional: On mobile, add a backdrop blur for a nicer feel */

/*-------------- product start--------------  */
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media only screen and (max-width: 767px) {
  .banner__item__pic {
    float: none !important;
  }

  .banner__item {
    margin-bottom: 40px;
  }

  .banner__item__pic img {
    min-width: 100%;
  }

  .banner__item__text {
    max-width: 100% !important;
    position: relative !important;
    top: 0 !important;
    padding-top: 22px !important;
  }

  .banner__item.banner__item--middle {
    margin-top: 0 !important;
  }

  .banner__item.banner__item--last {
    margin-top: 0 !important;
  }

  .spad {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.banner__item {
  position: relative;
  overflow: hidden;
}

.banner__item__pic {
  float: right;
}

.banner__item__pic img {
  max-width: 100%;
}

.banner__item__text {
  max-width: 300px;
  position: absolute;
  left: 0;
  top: 140px;
}

.banner__item__text h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #e6a242;
  text-transform: capitalize;
}

.banner__item__text p {
  color: #737373;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.4;
}

.banner__item__text a {
  display: inline-block;
  color: #111111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 3px 0;
  position: relative;
  text-decoration: none;
}

.banner__item.banner__item--middle {
  margin-top: -75px;
}

.banner__item.banner__item--middle .banner__item__pic {
  float: none;
}

.banner__item.banner__item--middle .banner__item__text {
  position: relative;
  top: 0;
  left: 0;
  max-width: 100%;
  padding-top: 22px;
}

.banner__item.banner__item--last {
  margin-top: 100px;
}

/* about us */
#section-counter {
  position: relative;
  z-index: 0;
  background-image: url("./img/vismaya_banner-1.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

#section-counter:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  opacity: 0.8;
  background: #50252f;
}

.ftco-counter .block-18 {
  display: block;
  width: 100%;
  text-align: center;
}

.ftco-counter .text strong.number {
  font-weight: 500;
  font-size: 3rem;
  color: #fff;
  display: block;
}

.ftco-counter .text span {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.ftco-section {
  padding: 4em 0;
  position: relative;
}

.container {
  max-width: 1300px;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.heading-section .subheading {
  font-weight: 400;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e2e2e2;
  position: relative;
}

.heading-section h2 {
  font-size: 2.8rem;
  font-weight: 400;
  color: #faddb4;
  text-transform: capitalize;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.wrap-about {
  color: #f2cc95;
}

.ftco-section-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.ftco-section-p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: #d6d6d6;
}

@media (max-width: 767.98px) {
  .img-2 {
    height: 300px;
    margin-bottom: 40px;
  }
}

/* popular products */
.latest {
  padding-bottom: 55px;
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.section-title {
  margin-bottom: 20px;
  text-align: left;
  margin-top: 20px;
}

.section-title span {
  font-weight: 400;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #50252f;
}

.blog__item {
  margin-bottom: 13px;
}

/* .blog__item__pic {
    height: 270px;
} */

.blog__item__text {
  padding: 30px 30px 25px;
  /* margin: 0 30px; */
  margin-top: 15px;
  background: #e9a24273;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  height: 245px;
  color: antiquewhite;
  border-radius: 15px;
}

.blog__item__text span {
  color: #50252f;
  font-size: 1rem;
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 5px;
}

.blog__item__text h5 {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: #50252f;
}

/* .blog__item__text a {
    display: inline-block;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 3px 0;
    position: relative;
    text-decoration: none;
} */

.blog__item__text span:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  height: 2px;
  background: #111111;
  content: "";
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.blog__item:hover span::after {
  width: 30%;
  background: #ffe7c6;
}

/* ---------------------contacts------- */

.footer-logo img {
  font-size: 22px;
  font-weight: bold;
  max-width: 70px;
}

.ftco-footer-social {
  padding: 0 !important;
  margin: 0;
  position: relative;
}

.ftco-footer-social li {
  list-style: none;
  margin: 0 0 0 0;
  display: inline-block;
  height: 30px;
  width: 30px;
  padding-left: 0 !important;
}

.ftco-footer-social li a {
  margin: 0;
  height: 30px;
  width: 30px;
  display: block;
  color: #50252f;
  border-radius: 4px;
  position: relative;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* contact us section start*/
.untree_co-section {
  margin-bottom: 4rem;
}

.form-control,
.custom-select {
  border: none;
  font-size: 16px;
  height: 45px;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border-bottom: 1px solid #43434d;
  border-radius: 0;
}

.form-control:active,
.form-control:focus,
.custom-select:active,
.custom-select:focus {
  border-color: #e6a242;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
}

.btn-contactus.btn-black {
  background: #50252f;
  color: #ffffff;
}

.btn-contactus.btn-black:hover {
  background: #ffb100;
  color: black;
}

.btn-contactus {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0px;
  font-size: 14px;
  border: 1px solid transparent;
}

#map {
  position: relative;
}

#map iframe {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  min-height: 400px;
  height: 100%;
  position: absolute;
}

.text-center {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.contact-title {
  text-transform: uppercase;

  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0 0 10px 0;
  font-weight: normal;
  line-height: normal;
  color: #111111;
  margin: 0;
}

/* contact us section end*/
/* model-contact */
.modal-dialog {
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%) !important;
}
.modal-header {
  border-bottom: 0 solid #dee2e6 !important;
  padding: 2rem 2rem 0 !important;
}
.modal-body {
  padding: 0rem 2rem 2rem !important;
}
.modal-footer {
  border-top: 0px solid #dee2e6 !important;
}
.modal-content {
  background: #50252f !important;
  border-radius: 20px !important;
}
.modal-header .close {
  color: #ffe7c6 !important;
}
.modal-title,
.model-text {
  color: #ffe7c6 !important;
}
@media (max-width: 768px) {
  .blog__item__text {
    text-align: center;
  }
  .blog__item__text span:after {
    left: 50% !important;
    transform: translate(-50%) !important;
  }
}
