/* resources/scss/style.scss */
/* Basic fonts for non-heading body text are already set in app.css.
   Keep here only structural & utility SCSS rules. */
body {
  font-family: "DM Sans", sans-serif !important;
  font-size: 100%;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, .head {
  /* Removed font-family here on purpose to avoid Tailwind preflight conflict.
     Heading font is controlled in Tailwind-generated CSS (app.css). */
  margin: 0;
  font-weight: normal;
}

.head {
  line-height: 70px;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .head {
    line-height: 50px;
    font-size: 2rem;
  }
}

p, span, li, a {
  font-family: "DM Sans", sans-serif;
}

img, img:focus, input, input:focus, button, button:focus, a, a:focus {
  outline: none;
}

img {
  width: 100%;
  height: auto;
}

.web {
  display: block;
}

.mobile {
  display: none;
}

input, input:focus, select:focus-visible {
  box-shadow: none !important;
}

p, ul li {
  text-align: justify;
  line-height: 0.95rem;
  color: #2e2e38;
}

.container {
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
}

.card, .amitShadow {
  box-shadow: 1px 1px 5px #aaa;
  transition: 0.5s all;
}
.card:hover, .amitShadow:hover {
  box-shadow: 0 14px 28px rgba(191, 191, 191, 0.2509803922), 0 10px 10px rgba(132, 132, 132, 0.2196078431);
}

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  margin-top: 1em;
  font-weight: 700;
  color: #2e2e38;
}
.content ul li, .content p {
  line-height: 2em;
}
.content h1, .content h2 {
  font-size: 25px;
}
.content h3 {
  font-size: 20px;
}
.content h4 {
  font-size: 18px;
}
.content h5 {
  font-size: 16px;
}
.content h6 {
  font-size: 15px;
}
.content ul {
  padding-left: 2em;
}
.content ul li {
  list-style-type: disc;
}
.content a {
  color: #ad2e24;
  font-weight: 600;
  position: relative;
}
.content a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1em;
  border-bottom: 2px solid #ad2e24;
  content: "";
}

.card, .amitShadow {
  box-shadow: 1px 1px 5px #aaa;
  transition: 0.5s all;
}
.card:hover, .amitShadow:hover {
  box-shadow: 0 14px 28px rgba(191, 191, 191, 0.2509803922), 0 10px 10px rgba(132, 132, 132, 0.2196078431);
}

.navneetShadow {
  box-shadow: -1px -1px 2px rgba(255, 255, 255, 0.25), inset 2px 2px 5px rgba(255, 255, 255, 0.25), 8px 30px 30px rgba(0, 0, 0, 0.011), inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.glass {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.tint {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6); /* 60% black tint */
  z-index: 10;
}

.oneliner, .twoliner {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.oneliner {
  -webkit-line-clamp: 1;
}

.twoliner {
  -webkit-line-clamp: 2;
}

.html {
  scroll-behavior: smooth;
}

.shadow {
  box-shadow: 1px 1px 1px 1px rgba(51, 50, 50, 0.1), 1px 1px 1px 1px rgba(51, 50, 50, 0.1);
}
.shadow:hover {
  box-shadow: 1px 1px 1px 1px rgba(51, 50, 50, 0.1), 7px 7px 7px 5px rgba(51, 50, 50, 0.1);
}

.formstyle {
  margin-top: 3px;
  margin-bottom: 3px;
  width: 90%;
  padding: 3px 0px 3px 10px;
  background-color: transparent;
  z-index: 1000;
  width: 100%;
  background-color: #cccccc;
  border-radius: 10px;
}

.formstyle::-moz-placeholder {
  font-size: small;
}

.formstyle::placeholder {
  font-size: small;
}

.formstyle:focus-visible {
  outline: none;
}

.formstyle::-moz-placeholder {
  color: #000;
}

.formstyle::placeholder {
  color: #000;
}

.formbtn {
  color: #fff;
  border-radius: 10px;
  padding: 8px 25px 8px 25px;
  font-size: small;
  font-weight: 600;
  width: 100%;
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomout {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.zoomBannerImage {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  animation: zoomin 20s ease-in infinite;
  transition: all 20s ease-in-out;
}

/* book now btn wave animation */
.button-wrapper {
  position: fixed;
  transform: translateY(-50%);
  z-index: 20;
}

.button-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto; /* adjust based on your button's size */
}

.button-container .circle {
  position: absolute;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: #400227;
  transition: transform 2.5s ease, opacity 2.5s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: -1; /* Ensure circles are under the button */
}

@keyframes waves {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.button-container .delay1 {
  animation: waves 2.5s linear infinite;
  animation-delay: 0s;
}

.button-container .delay2 {
  animation: waves 2.5s linear infinite;
  animation-delay: 0.6s;
}

.button-container .delay3 {
  animation: waves 2.5s linear infinite;
  animation-delay: 1.2s;
}

.button-container .delay4 {
  animation: waves 2.5s linear infinite;
  animation-delay: 1.8s;
}

/* whatsapp button */ /* book now btn wave animation */
.button-wrapper2 {
  position: fixed;
  transform: translateY(-50%);
  z-index: 20;
}

.button-container2 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto; /* adjust based on your button's size */
}

.button-container2 .circle {
  position: absolute;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: #4AEB67;
  transition: transform 2.5s ease, opacity 2.5s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: -1; /* Ensure circles are under the button */
}

@keyframes waves {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.button-container2 .delay1 {
  animation: waves 2.5s linear infinite;
  animation-delay: 0s;
}

.button-container2 .delay2 {
  animation: waves 2.5s linear infinite;
  animation-delay: 0.6s;
}

.button-container2 .delay3 {
  animation: waves 2.5s linear infinite;
  animation-delay: 1.2s;
}

.button-container2 .delay4 {
  animation: waves 2.5s linear infinite;
  animation-delay: 1.8s;
}

@media (max-width: 767px) {
  .web {
    display: none;
  }
  .mobile {
    display: block;
  }
  .container {
    width: 98%;
    max-width: 98%;
  }
}/*# sourceMappingURL=style.css.map */