/*! project-name v0.0.1 | (c) 2025 YOUR NAME | MIT License | http://link-to-your-git-repo.com */
/* line 6, src/sass/components/_form.scss */
.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 18, src/sass/components/_form.scss */
.contact-form form {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

/* line 33, src/sass/components/_form.scss */
.form-floating {
  margin-bottom: 10px;
}

/* line 37, src/sass/components/_form.scss */
.form-floating input, .form-floating textarea, .form-floating select {
  border-radius: 5px;
}

/* line 40, src/sass/components/_form.scss */
.form-floating label {
  color: #000;
}

/* line 43, src/sass/components/_form.scss */
.form-floating textarea {
  height: 100px !important;
}

/* line 48, src/sass/components/_form.scss */
.form-error {
  margin-bottom: 0;
}

/* line 53, src/sass/components/_form.scss */
.form-select.error {
  color: black;
}

/* line 59, src/sass/components/_form.scss */
.single-line-input {
  width: 100%;
  max-width: 500px;
  margin-right: auto;
}

/* line 64, src/sass/components/_form.scss */
.single-line-input input, .single-line-input textarea, .single-line-input select {
  width: 100%;
  padding: 10px;
  overflow: hidden;
}

/* line 70, src/sass/components/_form.scss */
.single-line-input select option {
  max-width: 200px;
  white-space: nowrap;
  /* Prevent text from wrapping inside options */
  text-overflow: ellipsis;
  /* Add ellipsis if option text overflows */
  overflow: hidden;
}

/* line 84, src/sass/components/_form.scss */
form button {
  font-size: 20px !important;
  min-width: 200px;
}

/* line 90, src/sass/components/_form.scss */
input.error, textarea.error {
  border: 2px solid red;
}

/* line 93, src/sass/components/_form.scss */
.error {
  font-size: 14px;
  color: red;
}

@media only screen and (max-width: 75em) {
  /* line 99, src/sass/components/_form.scss */
  .single-line-input {
    min-width: 100%;
  }
}

/* line 6, src/sass/components/_popup.scss */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* Adjust the opacity as needed */
  display: none;
  /* Initially hidden */
  z-index: 999;
  /* Make sure it's behind the popup but above other content */
}

/* line 17, src/sass/components/_popup.scss */
.popup {
  display: none;
  position: fixed;
  background: white;
  padding: 20px;
  z-index: 1000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  border: 0px !important;
  outline: none !important;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* line 30, src/sass/components/_popup.scss */
.popup.active {
  display: block;
  max-height: 90vh;
}

/* line 35, src/sass/components/_popup.scss */
.popup img {
  width: 50vw;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 43, src/sass/components/_popup.scss */
.varanasi-event-popup img {
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 48, src/sass/components/_popup.scss */
.popup h4 {
  max-width: 70vw;
  padding: 20px;
}

/* line 61, src/sass/components/_popup.scss */
.prev, .next {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1002;
  display: none;
}

/* line 74, src/sass/components/_popup.scss */
.prev {
  left: 10px;
}

/* line 78, src/sass/components/_popup.scss */
.next {
  right: 10px;
}

/* line 82, src/sass/components/_popup.scss */
.popup-container {
  position: relative;
}

/* line 86, src/sass/components/_popup.scss */
.close-popup {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px;
  background: transparent;
  color: #734bd1;
  font-size: 20px;
  border: none;
  cursor: pointer;
  z-index: 1001;
  /* Ensure it's above other elements */
}

/* line 98, src/sass/components/_popup.scss */
.close-popup i {
  font-size: 25px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #734bd1;
  background: #734bd1;
  color: white;
}

/* line 108, src/sass/components/_popup.scss */
.close-popup i:hover {
  background: #faa946;
  border-color: #faa946;
  color: black;
}

@media only screen and (max-width: 37.5em) {
  /* line 118, src/sass/components/_popup.scss */
  .close-popup i {
    font-size: 20px;
    line-height: 24px;
    width: 24px;
    height: 24px;
  }
}

/* line 10, src/sass/pages/contact.scss */
.contact-us-page .hero-section-text {
  top: 45%;
}

/* line 14, src/sass/pages/contact.scss */
.contact-section-container {
  margin-top: -150px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px -5px 3px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px -5px 3px 1px rgba(0, 0, 0, 0.2);
  padding: 50px;
}

@media only screen and (max-width: 992px) {
  /* line 14, src/sass/pages/contact.scss */
  .contact-section-container {
    padding: 35px 15px;
  }
}

/* line 26, src/sass/pages/contact.scss */
.contact-section-container .list-social li a {
  background-color: #734bd1;
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 32, src/sass/pages/contact.scss */
.contact-section-container .list-social li:hover a {
  background-color: #faa946;
}

/* line 34, src/sass/pages/contact.scss */
.contact-section-container .list-social li:hover a i {
  color: #fff;
}

@media only screen and (max-width: 75em) {
  /* line 24, src/sass/pages/contact.scss */
  .contact-section-container .list-social {
    margin-bottom: 0 !important;
  }
}

/* line 46, src/sass/pages/contact.scss */
.map {
  -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
  padding: 5px;
}

@media only screen and (max-width: 992px) {
  /* line 46, src/sass/pages/contact.scss */
  .map {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 992px) {
  /* line 52, src/sass/pages/contact.scss */
  .map iframe {
    height: 350px;
  }
}

@media (min-width: 1201px) and (max-width: 1399px) {
  /* line 60, src/sass/pages/contact.scss */
  .our-goal-text {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
