/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@property --progress {
  syntax: '<integer>';
  inherits: true;
  initial-value: 0;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  src: url("../font/fa-solid-900.woff2") format("woff2");
  font-display: swap;
}


:root {
  --dark-color: #1d1d1d;
  --accent-color: #bc922c;
  --gray-color: #848484;
  --font-1: 'Roboto', sans-serif;
  --font-2: 'Lato', sans-serif;
}

body {
  background-color: var(--dark-bg);
}

h1 {
  font-size: 100px;
}

h2 {
  font-size: 72px;
}

h3 {
  font-size: 30px
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

@media (max-width: 768px) {
  .hidemob {
    display: none;
  }

  .visible-xs {
    display: block !important;
  }
}

.dontdisplaylg {
  display: none;
}

ul {
  list-style: none;
}

img {
  object-fit: cover;
}

section {
  background-size: cover;
  background-position: center;
}

button,
a[type="button"] {
  padding-inline: 2rem;
  padding-block: 0.7rem;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  color: var(--accent-color);
}

button:hover,
a[type="button"]:hover {
  background-color: var(--accent-color) !;
}

a {
  text-decoration: none;
}

.font-1 {
  font-family: var(--font-1);
}

.font-2 {
  font-family: var(--font-2);
  font-size: 32px;
}

.nav-link {
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
}

.nav-link:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.nav-link.active {
  color: var(--accent-color) !important;
}

.nav-link:focus {
  color: var(--accent-color) !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.section {
  padding: 5em 2em 4em 2em;
  overflow: hidden;
}

.r-container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.background-1 {
  background-color: transparent;
  /* background-image: linear-gradient(90deg, #F3F3F3 45%, #F2295B00 0%); */
}

.background-2 {
  background-color: #f3f3f3;
}

.background-3 {
  background-color: transparent;
  /* background-image: linear-gradient(-8deg, #9c7d440a 49%, #fff 0%); */
}

.background-4 {
  background-color: transparent;
  background-image: linear-gradient(90deg, #E4BB7D00 53%, #1D1D1D 0%);
}

.background-5 {
  background-color: transparent;
  background-image: linear-gradient(270deg, #E4BB7D00 88%, #f3f3f3 0%);
}

.bg-dark-color {
  background-color: #000;
  padding: 8px 0px;
  margin-top: -17px;
}

.bg-dark-hover {
  background-color: white;
  color: var(--dark-color);
  transition: all 0.5s;
}

.bg-dark-color-hover:hover {
  background-color: var(--dark-color);
}

.bg-dark-hover:hover {
  background-color: var(--dark-color);
  color: white;
}

.accent-color {
  /* color: var(--accent-color); */
  color: #000;
  padding-top: 20px;
}

.accent-color1 {
  color: #fff;
}

.text-gray {
  color: #000;
}

.text-white {
  color: #fff;
}

.logo-container {
  max-width: 260px;
  font-size: 35px;
  color: #fff;
  /* padding: 15px 0px; */
}


.logo-container:hover {
  color: #fff;
}

.navbar a:hover {
  text-decoration: none;
}

/* .logo{
  width: 90px;
} */

#hero {
  width: 100%;
  /* height: 105vh; */
  /* background: url("../images/Desktop-Banner-2-Prithvi-Paradise-Tathawade.webp") top center; */
  background-size: cover;
  position: relative;
}

#heromob {
  width: 100%;
  /* height: 86vh; */
  /* background: url("../images/Mobile-Banner-Prithvi-Paradise-Tathawade-.webp") top center; */
  background-size: cover;
  position: relative;
  padding: 0;
  top: -15px;
}

.navbar-toggler:focus {
  background-color: transparent;
}

.card {
  border: none;
}

.card-body h5 {
  font-size: 17px;
  padding-top: 0px;
  font-weight: 500;
  text-align: left;
}

.card .card-body {
  background-color: rgba(255, 255, 255, 0.9);
  /* margin-top: -1.5rem; */
  border-radius: 15px;
}

.overlay-card {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 250px;
}

.overlay-card .overlay-body {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #000 0, rgba(0, 0, 0, 0.404) 60%);
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.5s ease;
  transform-origin: bottom;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay-card:hover .overlay-body {
  /* opacity: 1; */
  transform: scaleY(1);
}

.link {
  position: absolute;
  /* Position absolute to cover the whole card */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (max-width : 575px) {

  .overlay-card {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 95px;
  }

}



.pricing-container {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  justify-content: center;
  align-items: center;
  /* padding: 1.75rem; */
  padding: 10px 20px 30px 20px;
  background-color: white;
  margin-top: 2rem;
  border: 0.5px solid #ddd;
}

.pricing-tag {
  position: absolute;
  /* background-color: #9c7d44; */
  box-shadow: 0px 0 10px rgb(24 25 28 / 24%);
  /* right: 0; */
  height: 3.5rem;
  width: 75%;
  top: 7.4rem;
}

.pricing-price {
  display: flex;
  flex-direction: row;
  color: #000;
  height: 4rem;
  /* padding: 15px; */
  z-index: 2;
}

.pricing-container.exclusive {
  background-color: var(--dark-color);
  color: white !important;
  margin-top: -3rem;
}

.pricing-container.exclusive .pricing-tag {
  background-color: var(--accent-color);
}

@keyframes load {
  to {
    --progress: var(--value)
  }
}

@keyframes background_animation {
  from {
    background-size: 100%;
  }

  to {
    background-size: 110%;
  }
}

@keyframes ripple {
  from {
    opacity: 0.7;
    transform: scale3d(1, 1, 1);
    transform-origin: center;
    border-width: 1px;
  }

  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
    transform-origin: center;
    border-width: 17px;
  }
}


@media only screen and (max-width:993px) {
  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 56px;
  }

  h3 {
    font-size: 25px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 14px;
  }

  .section {
    padding: 3em 2em 3em 2em;
    /* margin-top: -1rem; */
  }

  .pricing-container.exclusive {
    margin-top: 0;
  }

  .font-2 {
    text-align: center;
    font-size: 28px;
    padding: 5px 0px;
  }
}

.box-bg-dark-color {
  height: 25vh;
  width: 100%;
  background: #e3ba7c;
  margin-top: 1rem;
  /* padding: 20px 0px;*/
}

.box-bg-dark-color:hover {
  background: #fff;
}

.box-bg-dark-color h5 {
  color: #000;
  font-size: 16px;
}

.box-bg-dark-hover h5 {
  color: #000;
  font-size: 16px;
}

.box-bg-dark-hover {
  height: 25vh;
  width: 100%;
  background: #fff;
  margin-top: 1rem;
  box-shadow: 0px 0px 15px rgb(106 93 93 / 30%);
}

.box-bg-dark-hover:hover {
  background: #e3ba7c;
  color: #000;
}

.box-bg-dark-hover img {
  height: 40px;
  width: 40px;
}

.box-bg-dark-color img {
  height: 40px;
  width: 40px;
}

@media Screen and (max-width: 768px) {

  .logo-container {
    width: 60%;
    font-size: 30px;
  }

  .box-bg-dark-hover {
    height: 24vh;
  }

  .box-bg-dark-hover img {
    height: 40px;
    width: 40px;
  }

  .box-bg-dark-color {
    height: 24vh;
  }

  .box-bg-dark-color img {
    height: 40px;
    width: 40px;
  }

  .box-bg-dark-hover h5 {
    font-size: 17px;
  }

  .box-bg-dark-color h5 {
    font-size: 17px;
  }
}

/*Right SIDE NAVIGATION */
.right-side-navigation {
  width: 450px;
  max-width: 100%;
  height: 100%;
  min-height: 400px;
  position: fixed;
  right: -100%;
  top: 0;
  background: #26282b;
  z-index: 111111;
  box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-duration: 700ms;
  -webkit-transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.right-side-navigation h6 {
  font-size: 30px;
  text-align: center;
  /* margin-top: 3rem; */
}

.right-side-navigation p {
  display: block;
  text-align: center;
  margin-bottom: 15px;
  font-size: 20px;
}

.right-side-navigation.active {
  left: 0;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  opacity: 1;
  right: 8px;
  bottom: 62px;
  z-index: 996;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
  background: #000;
  border: 2px solid #000;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000;
  border: 2px solid #000;
  text-decoration: none;
}

.back-to-top:hover i {
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  /* opacity: 1; */
}


/*Share Button*/

.wrapper {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 100;
}

.wrapper :is(.btn, .link) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  left: -15px;
  margin-top: -4rem;
}

.btn {
  position: absolute;
  border: none;
  cursor: pointer;
  z-index: 10;
  margin-left: 8px;
}

.btn:hover {
  background-color: #000;
  border: 1px solid #000;
  outline-offset: -4px;
  color: #fff;
}

.item {
  position: absolute;
  list-style: none;
  transition: transform 0.5s;
  transition-delay: var(--d);
  margin-left: -24px;
}

.wrapper.active .item:nth-child(1) {
  transform: translateY(-132px);

}

.wrapper.active .item:nth-child(2) {
  transform: translateY(-65px);

}

.wrapper.active .item:nth-child(3) {
  transform: translateY(-199px);
}

/* .link:hover {
    color: #04a53a;
    transition: background-color 0.5s;
  } */

/* .ig:hover {
    background-color: #04a53a;
    color: #fff;
  } */

/* .tw:hover {
    color: #fff;
    background-color: #000;
  }
   */

/* .sc:hover {
    color: #fff;
    background-color: #000; 
  } */

/*New Blooming Code*/
.container {
  justify-content: center;
  align-items: center;
}

.pulse i {
  color: #fff;
  font-size: 2.3rem;
}

.pulse {
  background: #1f6191;
  border-radius: 50%;
  display: flex;
}

.pulse::before {
  content: "";
  position: absolute;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 2px solid #1f6191;
  border-radius: 50%;
  animation: animate 2.5s linear infinite;
}

.pulse::after {
  content: "";
  position: absolute;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 2px solid #1f6191;
  border-radius: 50%;
  animation: animate 2.5s linear infinite;
  animation-delay: 0.4s;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 16px;
}

/* LINKS */
a {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  color: #26282b;
}

a:hover {
  text-decoration: underline;
}

/* CUSTOM CONTAINER */
.container {
  max-width: 1280px;
}

/* FORM ELEMENTS */
input[type=text] {
  width: 100%;
  height: 45px;
  border: 1px solid #d8cfcf;
  padding: 0 20px;
  margin-top: 8px;
  color: #000;
  margin-bottom: -15px;
}

input[type=tel] {
  width: 100%;
  height: 45px;
  border: 1px solid #d8cfcf;
  padding: 0 20px;
  color: #000;
  margin-top: 10px;
}

textarea {
  width: 100%;
  height: 160px;
  border: 1px solid #eee;
  padding: 15px 20px;
}

button[type=submit] {
  height: 47px;
  border: none;
  background: #bc922c;
  color: #fff;
  /* padding: 0 30px; */
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0rem;
  /* padding-top: 7px; */
  border-radius: 25px;
}

button[type=submit]:hover {
  background: #1f6191;
}

#next-btn {
  height: 40px;
  border: none;
  background: #bc922c;
  color: #fff;
  /* padding: 0 30px; */
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0rem;
  padding-top: 7px;
  border-radius: 25px;
}

#next-btn:hover {
  background: #1f6191;
}


#name::placeholder {
  color: white;
  font-weight: 400;
}

#email::placeholder {
  color: white;
  font-weight: 400;
}

#mobile::placeholder {
  color: white;
  font-weight: 400;
}


.btnblack {
  width: 77%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  /* color: #000; */
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  background: #bd912c;
  color: #fff;
  /* background-color: transparent; */
  border: 1px solid #fff;
  padding: 0 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  text-decoration: none;
  display: inline-block;
  margin: 10px auto;
  border-radius: 25px;
}

.btnblack i {
  margin-left: 10px;
}

.btnblack:hover {
  background: #000;
  color: #fff;
}



#p1 a {
  color: #fff;
}

#p1:hover {
  background: #000;
  color: #fff;
}

#p1 a:hover {
  text-decoration: none;
}

.call {
  text-align: center;
}

.call h5 {
  text-align: center;
  font-size: medium;
  margin-top: -1.4rem;
}

.call a {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  width: 100%;
  border-radius: 40px;
  text-align: center;
}

.call a:hover {
  text-decoration: none;
  font-size: 27px;
}

.call i {
  font-size: large;
  margin-right: 15px;
}

/* CONTACT */
.contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 25px 0;
}

.contact .contact-form {
  width: 100%;
  display: block;
  /* padding-left: 10%; */
  margin-top: -5rem;
}

.contact .contact-form h5 {
  margin-bottom: 40px;
}

.contact .contact-form #contactForm1 {
  display: block;
  line-height: 1.5;
  margin-top: 40px;
}

.contact .contact-form #contactForm1 .form-group {
  display: block;
  position: relative;
  margin-bottom: 30px;
}

.contact .contact-form #contactForm1 .form-group span {
  width: 100%;
  line-height: 54px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 20px;
  z-index: 0;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.contact .contact-form #contactForm1 .form-group span.label-up {
  font-size: 13px;
  line-height: 16px;
  top: -20px;
  font-weight: 600;
  opacity: 20%;
}

.contact .contact-form #contactForm1 .form-group input[type=text] {
  background: none;
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 500;
  height: 43px;
  /* margin-top: 1rem; */
  border-radius: 25px;
  text-align: center;
}

.contact .contact-form #contactForm1 .form-group input[type=tel] {
  background: none;
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 500;
  height: 43px;
  margin-top: 1rem;
  margin-bottom: -10px;
  border-radius: 25px;
  text-align: center;
}

.contact .contact-form #contactForm1 .form-group button[type=submit] {
  margin-top: 0.5rem;
}


.contact .contact-form #contactForm1 .form-group input:focus+span {
  font-size: 13px;
  line-height: 16px;
  top: -20px;
  font-weight: 600;
}

.contact .contact-form #contactForm1 .form-group textarea {
  background: none;
  position: relative;
  z-index: 2;
}

.contact .contact-form #contactForm1 .form-group textarea:focus+span {
  font-size: 13px;
  line-height: 16px;
  top: -20px;
  font-weight: 600;
}

.contact .contact-form #contactForm1 .form-group label.error {
  color: red;
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 13px;
}

.contact .contact-form #success,
.contact .contact-form #error {
  display: none;
  float: left;
}

.contact .contact-form #error {
  background: red;
  color: #fff;
}

.contact .contact-form #success {
  background: green;
  color: #fff;
}

.contact .contact-form .alert {
  border: none;
  border-radius: 0;
  padding: 20px 30px;
}


/* Fixed Footer */

.down_enquiry {
  background: #320902;
  bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 9;
  display: none;
  /* Make it visible with `display: block;` when needed */
}

.down_enquiry ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  /* Use flexbox for alignment */
}

.down_enquiry ul li {
  flex: 1;
  /* Equal width for all buttons */
  text-align: center;
  border-right: 1px solid #fff;
  color: #fff;
}

.down_enquiry ul li:last-child {
  border-right: none;
  /* Remove border for the last item */
}

.down_enquiry ul li a {
  color: #fff;
  display: block;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  /* For animation clipping */
}

/* Hover Effect */
.down_enquiry ul li a:hover {
  color: #ffffff;
  background-color: #000;
  /* Slightly darker shade on hover */
}

/* Highlight Animation */
.animated {
  animation: pulse 2.5s infinite;
}

/* Keyframes for pulsing animation */
@keyframes pulse {
  0% {
    background-color: #000;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }

  50% {
    background-color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
  }

  100% {
    background-color: #000;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
}

/* Responsive Settings for Buttons */
@media (max-width: 767px) {
  .down_enquiry {
    display: block;
    /* Show the buttons for mobile view */
  }

  .down_enquiry ul li a {
    font-size: 16px;
    padding: 12px 0;
  }
}


.hidden-field {
  display: none;
}

.small-text {
  font-size: 16px;
  vertical-align: middle;
}

.fs-3 {
  margin-top: -3px;
}

.carousel-item {
  position: relative;
}

.button-overlay {
  position: absolute;
  /* Position relative to the carousel item */
  bottom: 10%;
  /* Position slightly above the bottom of the video */
  left: 23%;
  /* Center horizontally */
  transform: translateX(-50%);
  /* Adjust horizontal alignment for exact centering */
  z-index: 10;
  /* Keep the button above the video */
  text-align: center;
}

.notify-button {
  padding: 5px 30px;
  font-size: 18px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  animation: pulse 1.5s infinite;
  /* Adding a pulsing animation */
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
  }
}

/* .notify-button:hover {
  background-color: #fff;
  color: #000;
  border: none;
} */



#loc {
  background: #000;
  color: #fff;
  border: none;
}

#loc:hover {
  background: #fff;
  color: #000;
  border: none;
}


/* CSS Code for Header Section */

.qr-container {
  position: absolute;
  left: 40px;
  /* right: 15px; */
  bottom: 20px;
  /* top: 30px; */
  background-color: #fff;
  padding: 2px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qr-container img {
  width: 100px;
  /* Adjust size */

}

.qr-container p {
  font-size: 14px;
  text-align: center;
  color: black;
  font-weight: 500;
  margin-top: -2px;
  margin-bottom: 0rem;
}

/* Mobile QR Code + RERA */
.mobile-rera-section {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 25px;
}

.mobile-rera-section img {
  width: 30%;
  max-width: 150px;
  height: auto;
}

.rera-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.rera-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-top: 08px;
}

.rera-link {
  font-size: 12px;
  color: #000;
  text-decoration: none;
}

.rera-link:hover {
  text-decoration: underline;
}

/* Show QR Code Section Only on Mobile */
@media (max-width: 768px) {
  .mobile-rera-section {
    display: flex;
  }
}


.google-map iframe {
  pointer-events: none;
}


/* Popup Form CSS  */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


.popup-content .form-group input[type=text] {
  width: 100%;
  height: 43px;
  border: 1px solid #d7cbcb;
  padding: 0 20px;
  margin-top: 8px;
  margin-bottom: 20px;
  color: #000;
  border-radius: 25px;
  text-align: center;
}

.popup-content .form-group input[type=tel] {
  width: 100%;
  height: 43px;
  border: 1px solid #d7cbcb;
  padding: 0 20px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #000;
  border-radius: 25px;
  text-align: center;
}

.popup-content {
  background: #0a0909eb;
  padding: 25px 30px 40px 30px;
  border-radius: 8px;
  width: 380px;
  text-align: center;
  position: relative;
  box-shadow: 0px 0 10px rgb(184 189 203 / 43%);
}

.popup-content h6 {
  font-size: 28px;
  color: #fff;
}

.popup-content p {
  font-size: 20px;
  color: #fff;
}

.popup-content h4,
.popup-content h5 {
  margin: 0;
}

.popup-content .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  margin-top: 0rem;
  color: #fff;
  background: #0a0909d6;
}

.input-item {
  position: relative;
  padding-right: 0px;
  padding-left: 0px;
}

.input-item.ltn__custom-icon::before {
  position: absolute;
  top: 35%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  color: var(--ltn__secondary-color);
}

/* .popup-content button {
  width: 88%;
  margin-left: 15px; 
} */



/* Footer */

.footer-section {
  background: #282828;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 40px;
  /* padding-bottom: 80px; */
}

.footer-section::before {
  content: "";
  position: absolute;

  width: 100%;
  /* height: 625px; */
  top: 0;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-section .left-lamp {
  position: absolute;
  top: 0;
  left: 118px;
}

.footer-section .right-lamp {
  position: absolute;
  top: 0;
  right: 118px;
}

.footer-section .middle-portion {
  padding-bottom: 30px;
}

.footer-section .middle-portion .logo-part {
  text-align: center;
}

.footer-section .middle-portion .logo-part .footer-logo {
  margin-bottom: 30px;
}

.footer-section .middle-portion h6 {
  color: var(--e-global-color-white);
  margin-bottom: 34px;
}

.footer-section .middle-portion input {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--e-global-color-very-dark-gray);
  background: var(--e-global-color-white);
  border: 1px solid var(--e-global-color-very-dark-gray);
  border-radius: 50px;
  padding: 30px 35px;
  margin-bottom: 65px;
  width: 76%;
  height: 82px;
  overflow: visible;
  outline: none;
  margin-left: 135px;
  word-spacing: 1.8px;
}

.footer-section .subscribe_now {
  position: absolute;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 20px 34px 20px 50px;
  right: 145px;
  top: 6px;
  width: 216px;
  height: 70px;
  background: var(--e-global-color-accent);
  color: var(--e-global-color-white);
  border: 2px solid var(--e-global-color-accent);
  border-radius: 50px;
  outline: none;
  box-shadow: none;
  letter-spacing: 0.8px;
}

.footer-section .subscribe_now:hover {
  background: var(--e-global-color-white);
  color: var(--e-global-color-accent);
  border-radius: 50px;
  outline: none;
  box-shadow: none;
}

.footer-section .subscribe_now .dot {
  background: var(--e-global-color-white);
  border-radius: 50px;
  width: 9px;
  height: 9px;
  line-height: 9px;
  position: relative;
  top: 6px;
  float: left;
  margin-right: 7px;
  transition: all 0.3s ease-in-out;
}

.footer-section .subscribe_now:hover .dot {
  background: var(--e-global-color-accent);
}

.footer-section .middle-portion .links {
  margin-left: 82px;
}

.footer-section .middle-portion .links li {
  display: inline-block;
  margin: 0 38px;
}

.footer-section .middle-portion .links li:first-child {
  margin-left: 0px;
}

.footer-section .middle-portion .links li:last-child {
  margin-right: 0px;
}

.footer-section .middle-portion a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  /* text-transform: uppercase; */
  color: var(--e-global-color-white);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.6px;
  word-spacing: 0.2px;
}

.footer-section .middle-portion a:hover {
  color: #bc922c !important;
}

.footer-section .footer-lower {
  border-top: 2px solid #b2b0664f;
  padding: 10px 0 30px 0;
  position: relative;
  z-index: 1;
}

.footer-section .footer-lower .social-icons {
  margin-top: -14px;
}

.footer-section .footer-lower .social-icons ul li {
  display: inline-block;
  margin: 0 6px;
}

.footer-section .footer-lower .social-icons ul li:first-child {
  margin-left: 0;
}

.footer-section .footer-lower .social-icons ul li:last-child {
  margin-right: 0;
}

.footer-section .footer-lower .social-icons ul li .social-networks {
  font-size: 18px;
  margin-top: 2px;
  color: var(--e-global-color-white);
  border: 1px solid var(--e-global-color-white);
  background: transparent;
  border-radius: 100px;
  text-align: center;
  transition: all ease-in-out 0.3s;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.footer-section .footer-lower .social-icons ul li .social-networks:hover {
  color: var(--e-global-color-accent);
  border: 1px solid var(--e-global-color-white);
  background: var(--e-global-color-white);
  transform: translateY(-5px);
}

.footer-section .footer-lower p {
  color: var(--e-global-color-very-light-gray-mostly-white);
  float: right;
}

ul {
  list-style-type: none;
}




/* General styles for anchor links */
.link {
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
}

/* Styling for each info-item */
.info-item {
  background-color: #f9f9f9;
  /* Light background */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Slight shadow for depth */
  text-align: center;
  /* Center the contents */
}

/* Styling for the icons */
.info-item a i {
  font-size: 30px;
  /* Make the icons larger */
  margin-bottom: 10px;
  /* Space between icon and text */
}

/* Style for WhatsApp and Call Us links */
.info-item a {
  display: block;
  margin: 8px 0;
  /* Add margin to separate the links */
  color: #25D366;
  /* WhatsApp color */
}

/* Hover effect for the links */
.info-item a:hover {
  text-decoration: none;
  color: #128C7E;
  /* Darker color on hover */
}

/* Styling for headings (Whatsapp / Call Us) */
.info-item h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

/* Additional adjustments for responsiveness */
.col-lg-12 {
  padding: 15px;
}

@media (max-width: 768px) {
  .col-lg-6 {
    margin-bottom: 15px;
  }

  .pricing-tag {

    top: 6.7rem;
  }

}

.grecaptcha-badge {
  transform: translateY(80px) !important;
  opacity: .9 !important;
  transition: .3s
}

@font-face {
  font-family: "bootstrap-icons";
  src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons/font/fonts/bootstrap-icons.woff2") format("woff2");
  font-display: swap;
}



/* 1st Bottom Fixed contact form css code */

/* Fixed Bottom Contact Form */

/* Bottom Bar */
.bottom-contact-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #aba5a5;
  padding: 0px 15px;
  z-index: 99999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25);
}

/* Form Layout */
.bottom-fixed-form .bottom-form-inner {
  display: grid;
  /* grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr; */
  grid-template-columns: 2fr 2fr 2fr;
  gap: 15px;
  align-items: center;
}

.bottom-fixed-form input {
  width: 100%;
  padding: 6px 10px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  outline: none;
  height: 35px;
  text-align: center;
  margin-top: 7px;
  margin-bottom: 7px;
}

.bottom-fixed-form input::placeholder {
  color: #1f1e1ed0 !important;
}

.bottom-fixed-form button {
  width: 100%;
  padding: 6px 10px;
  background: #bc922c;
  /* background: #524e4e; */
  /* dark green */
  color: #fff;
  border: none;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  height: 35px;
  line-height: 12px;
  animation: none;
}

.bottom-fixed-form button:hover {
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .bottom-fixed-form .bottom-form-inner {
    grid-template-columns: 1fr;
  }

  .bottom-contact-wrap {
    display: none !important;
  }

}

/* Invisible Google Recaptcha CSS Code */
.grecaptcha-badge {
  transform: translateY(80px) !important;
  opacity: .9 !important;
  transition: .3s
}