@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Pinyon+Script&display=swap");
html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #FCFBFD;
  font-family: "Manrope", sans-serif;
  font-weight: 200;
  position: relative;
}

.overflow-hidden {
  overflow: hidden !important;
}

* {
  transition: 0.2s;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  margin-bottom: 0;
}

i {
  cursor: pointer;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes scrollVertical {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@keyframes scrollHorizontal {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomLeft {
  0% {
    left: -60px;
  }
  100% {
    left: 0px;
  }
}
@keyframes zoomRight {
  0% {
    right: -60px;
  }
  100% {
    right: 0px;
  }
}
@keyframes scrollFeature {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 576px) {
  .col-reverse {
    flex-direction: column-reverse !important;
  }
}

mark {
  font-family: "Pinyon Script", cursive;
  background-color: transparent;
}

.solid-action-btn {
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.13);
  font-size: 16px;
  font-weight: 500;
}
.solid-action-btn:hover {
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.outline-btn {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: none;
}
.outline-btn:hover {
  background-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.heading {
  font-size: 42px;
  margin: 16px 0;
  font-weight: 600;
}
@media (max-width: 576px) {
  .heading {
    font-size: 30px;
    text-align: center;
  }
}

.sub-heading {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .sub-heading {
    font-size: 17px;
    text-align: center;
  }
}

.blur-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  overflow: auto;
  animation-name: fadeIn;
  animation-duration: 0.3s;
  z-index: 1000;
}
.blur-overlay .dialog-box {
  background-color: #ffffff;
  margin: auto 10px;
  width: 700px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
  animation-name: fadeUp;
  animation-duration: 0.5s;
  z-index: 10000;
  padding: 16px 25px;
}
.blur-overlay .dialog-box .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blur-overlay .dialog-box .head h5 {
  font-weight: bold;
}
.blur-overlay .dialog-box .head .close {
  padding: 0px 8px;
  cursor: pointer;
}
.blur-overlay .dialog-box .content {
  margin: 1rem 0;
}
.blur-overlay .dialog-box .content input::-moz-placeholder {
  color: #C5C5C5;
  font-size: 14px;
}
.blur-overlay .dialog-box .content input::placeholder {
  color: #C5C5C5;
  font-size: 14px;
}
.blur-overlay .dialog-box .content input:focus,
.blur-overlay .dialog-box .content textarea:focus {
  border-color: #ffffff !important;
  box-shadow: none;
}
.blur-overlay .dialog-box .content input[type=number]::-webkit-outer-spin-button,
.blur-overlay .dialog-box .content input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.blur-overlay .dialog-box .content .solid-action-btn {
  padding: 0.75rem 3rem;
}
.blur-overlay .dialog-box .content .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.blur-overlay .dialog-box .content .loading::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: loading 1s linear infinite;
}
.blur-overlay .dialog-box .content .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.blur-overlay .dialog-box .content .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.blur-overlay .thankyou-box {
  width: 550px;
}
.blur-overlay .thankyou-box .img {
  margin: auto;
  width: 150px;
  height: 150px;
}
.blur-overlay .thankyou-box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.blur-overlay .thankyou-box .content h3 {
  line-height: 1.5;
  font-weight: 800;
}
.blur-overlay .thankyou-box .content p {
  font-size: 14px;
}
.blur-overlay .thankyou-box .solid-action-btn {
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 16px;
}
.blur-overlay .thankyou-box .mssg {
  font-size: 14px;
  text-align: center;
}
.blur-overlay .thankyou-box .mssg a {
  color: #ffffff;
}
.blur-overlay .diwali-box {
  width: 600px;
  position: relative;
  padding: 0;
  border-radius: 25px;
}
.blur-overlay .diwali-box .head {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}
.blur-overlay .diwali-box .head .close {
  padding: 0px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #fff;
  text-align: center;
  cursor: pointer;
}
.blur-overlay .diwali-box .head .close i {
  color: #fff;
}
.blur-overlay .diwali-box .video-container {
  width: 600px;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
}
.blur-overlay .diwali-box .video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 650px) {
  .blur-overlay .diwali-box {
    width: 100%;
  }
  .blur-overlay .diwali-box .video-container {
    width: 100%;
    height: auto;
  }
  .blur-overlay .diwali-box .video-container video {
    height: auto;
  }
}

header {
  background-color: transparent;
}
header .navbar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
  /* Responsive */
}
header .navbar .container {
  margin: auto;
  padding: 0 20px;
  /* Logo */
  /* Menu */
  /* Hamburger */
}
header .navbar .container .navbar-brand img {
  height: 30px;
}
header .navbar .container .nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
header .navbar .container .nav-menu .nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
}
header .navbar .container .nav-menu .nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}
header .navbar .container .nav-menu .nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #000;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}
header .navbar .container .nav-menu .nav-links a:hover::after {
  width: 100%;
}
header .navbar .container .nav-menu .btn-book {
  padding: 10px 22px;
  border: 1px solid #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
header .navbar .container .nav-menu .btn-book:hover {
  background: #000;
  color: #fff;
}
header .navbar .container .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
header .navbar .container .menu-toggle span {
  width: 26px;
  height: 2px;
  background: #000;
  margin: 4px 0;
}
header .navbar .container .active .bar:nth-child(1) {
  transform: rotate(45deg) translate(9px, 5px);
}
header .navbar .container .active .bar:nth-child(2) {
  opacity: 0;
}
header .navbar .container .active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -6px);
}
header .navbar .container .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
@media (max-width: 991px) {
  header .navbar .container .menu-toggle {
    display: flex !important;
  }
  header .navbar .container .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    display: none;
    border-top: 1px solid #eee;
  }
  header .navbar .container .show {
    display: flex;
  }
  header .navbar .container .nav-links {
    flex-direction: column;
    gap: 18px;
    text-align: center;
    padding: 0;
  }
  header .navbar .container .btn-book {
    margin-top: 12px;
  }
}

.active-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7490196078);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.062745098);
  z-index: 10;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 0.5s ease-in-out;
}

section {
  padding: 50px 0 25px;
}
@media (max-width: 576px) {
  section {
    text-align: center;
  }
  section .solid-action-btn {
    display: inline;
  }
}

.lp-hero-section {
  background-image: url("../image/hero-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  position: relative;
  color: #fff;
}
.lp-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5215686275);
  z-index: 0;
}
.lp-hero-section mark {
  color: #fff;
  padding: 0 8px;
}
.lp-hero-section .brand-label {
  position: absolute;
  top: 70%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  background-color: rgba(255, 255, 255, 0.1254901961);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  z-index: 1;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .lp-hero-section .brand-label {
    display: none;
  }
}
.lp-hero-section .label {
  font-size: 20px;
  margin-bottom: 25px;
  width: -moz-fit-content;
  width: fit-content;
  color: #FCFBFD;
}
.lp-hero-section .heading {
  font-size: 62px;
  font-weight: 200;
  margin: 0;
  z-index: 1;
  position: relative;
  margin: 20px 0;
}
@media (max-width: 576px) {
  .lp-hero-section .heading {
    font-size: 32px;
  }
}
.lp-hero-section .sub-heading {
  font-size: 20px;
  font-weight: 200;
  z-index: 1;
  position: relative;
}
@media (max-width: 576px) {
  .lp-hero-section .sub-heading {
    font-size: 16px;
  }
}

.hom-gallery {
  overflow: hidden;
}
.hom-gallery .heading {
  margin-bottom: 8px;
}
.hom-gallery .heading mark {
  font-weight: 500;
  padding: 0 4px;
}
.hom-gallery .imgdesk {
  display: block;
  overflow: hidden;
  margin: auto;
  height: 500px;
}
.hom-gallery .imgdesk img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hom-gallery .view-more-container {
  text-align: center;
  margin-top: 20px;
}
.hom-gallery .view-more-container button {
  font-weight: 700;
  font-size: 16px;
  background-color: #eee;
  color: #ffffff;
  border-radius: 20px;
  border: none;
  padding: 8px 12px;
}

.why-choose-us {
  overflow: hidden;
  padding-top: 0;
}
.why-choose-us mark {
  font-weight: 500;
  padding: 0 4px;
}
.why-choose-us .hidden-column {
  display: none;
}
.why-choose-us .view-more-container {
  text-align: center;
  margin-top: 20px;
}
.why-choose-us .view-more-container button {
  font-weight: 700;
  font-size: 16px;
  background-color: #eee;
  color: #ffffff;
  border-radius: 20px;
  border: none;
  padding: 8px 12px;
}
.why-choose-us .info .imgdesk {
  display: block;
  padding: 16px;
  border: 1px solid #D7D7D7;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: auto;
}
.why-choose-us .info .imgdesk img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.why-choose-us .info small {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}
.why-choose-us .info .learnmore {
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  margin-top: 16px;
}
.why-choose-us .info .yellow {
  background-color: #FEE8E8;
}
@media (max-width: 576px) {
  .why-choose-us .info {
    padding: 0 10px;
  }
}

.hom-pricing-section {
  overflow: hidden;
  padding: 0 0 50px 0;
  /* Mobile spacing polish */
}
.hom-pricing-section mark {
  font-weight: 500;
  padding: 0 4px;
}
.hom-pricing-section .mehndi-card {
  border: 1px solid #e5e5e5;
  overflow: hidden;
  background: #fff;
  max-height: 400px;
}
.hom-pricing-section .mehndi-card .card-header-custom {
  background-color: #e6e6e6;
  padding: 16px 18px;
}
.hom-pricing-section .mehndi-card .card-header-custom .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
}
.hom-pricing-section .mehndi-card .card-header-custom .subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
  font-weight: 400;
}
.hom-pricing-section .mehndi-card .card-header-custom .price {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
}
.hom-pricing-section .mehndi-card .card-header-custom .card-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.hom-pricing-section .disclaimer-text {
  color: #555;
  font-weight: 500;
}
.hom-pricing-section .solid-action-btn {
  background-color: #000000;
  color: #fff;
  border-radius: 2px;
}
@media (max-width: 576px) {
  .hom-pricing-section .card-header-custom {
    padding: 14px;
  }
  .hom-pricing-section .card-header-custom .title {
    font-size: 16px;
  }
  .hom-pricing-section .card-header-custom .price {
    font-size: 13px;
  }
}

.category-section {
  overflow: hidden;
}
.category-section .info .imgdesk {
  display: block;
  overflow: hidden;
  padding: 0;
  width: 100%;
  height: 250px;
  border-radius: unset;
}
.category-section .info .imgdesk img {
  width: 100%;
  height: 100%;
  border-radius: unset;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.category-section .info p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 12px;
}

.trusted-stories {
  padding: 50px 0;
  background-color: #000000;
  color: #fff;
}
.trusted-stories mark {
  color: #fff;
  font-weight: 500;
}

.about-hom {
  padding: 50px 0;
}
.about-hom .heading,
.about-hom .sub-heading {
  color: #000000;
}
.about-hom ul {
  list-style: none;
  padding: 0;
}
.about-hom ul li {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-us-section {
  padding: 50px 0;
  background-color: #000000;
  color: #fff;
  /* Form wrapper */
  /* Submit button */
}
.contact-us-section .heading,
.contact-us-section .sub-heading,
.contact-us-section mark {
  color: #fff;
}
.contact-us-section .dark-form {
  width: 100%;
  /* Floating group */
}
.contact-us-section .dark-form .form-group-floating {
  position: relative;
  margin-bottom: 32px;
}
.contact-us-section .dark-form .form-group-floating label {
  position: absolute;
  top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s ease;
}
.contact-us-section .dark-form .form-group-floating input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  color: #fff;
  padding: 10px 0;
  font-size: 15px;
}
.contact-us-section .dark-form .form-group-floating input:focus {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #fff;
}
.contact-us-section .dark-form .form-group-floating input:focus + label, .contact-us-section .dark-form .form-group-floating input:valid + label {
  top: -12px;
  font-size: 12px;
  color: #fff;
}
.contact-us-section .dark-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.contact-us-section .dark-form .loading::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: loading 1s linear infinite;
}
.contact-us-section .dark-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .contact-us-section .dark-form {
    margin-top: 20px;
  }
  .contact-us-section .dark-form .form-group-floating label {
    left: 16px;
  }
}
.contact-us-section .submit-btn {
  background: #fff;
  color: #000;
  border-radius: 0;
  padding: 10px;
  font-weight: 500;
  margin-left: 0;
}
.contact-us-section .submit-btn:hover {
  background: #e6e6e6;
}

footer {
  padding: 50px 0px 20px;
  overflow: hidden;
  background-color: #fff;
  color: #000000;
}
footer .links h5 {
  font-weight: 600;
  font-size: 16px;
}
footer .links h5 a {
  color: #000000;
  margin-right: 10px;
  font-weight: 400;
  font-size: 14px;
}
footer .links h5 a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 5px 0;
  background-color: #000000;
  color: #fff;
  font-size: 14px;
}/*# sourceMappingURL=main.css.map */