/* styles.css */
.hidden {
  display: none;
}

.bg {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #3a12379c 50%, #551e504f 50%);
  bottom:0;
  left:-50%;
  opacity:.5; 
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

.content {
  background-color:rgba(255,255,255,.8);
  border-radius:.25em;
  box-shadow:0 0 .25em rgba(0,0,0,.25);
  box-sizing:border-box;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  top:50%;
  transform:translate(-50%, -50%);
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

.body {
    margin: 0;
    padding-top: 0px; /* Adjust according to the height of your header */
}

.logo {
    padding: 1px;
    border-radius: 50%;
    transition: all 0.2s ease-in;
    height: 60px;
}

.logo:hover {
    border: 2px solid #df1c5a;
    border-radius: 30%;
    height: 65px;
}

.header {
    background-color: none;
    color: aliceblue;
    padding: 5px;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 20px;
    text-align: fixed;
    width: auto;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.5s ;
}

.contact-button {
    background-color: #fff;
    color: #3A1237;
    padding: 18px;
    border-radius: 25px;
    font-size: 1rem;
    text-decoration: dashed;
    margin-right: 10px;
    margin-left: auto;
    border: 2px solid #3A1237;
    transition: all 0.3s linear, color 0.2s;
    cursor: pointer;
}

.contact-button:hover {
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    text-decoration: dashed;
    margin-right: 10px;
    margin-left: auto;
    border: 2px solid #250523;
    background-color: #551e50;
}

.buttons {
    padding-right: 10px ;
}

.intro-h1 {
    padding-top: 15px ;
    color: #3A1237;
    padding-left: 10px;
    font-family: "Lucida Console";
    text-align: center;
    font-weight: 900;
    font-size: 0.8rem;
}

.intro-h2 {
    padding-top: 10px ;
    color: #3A1237;
    padding-left: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 900;
    transition: all 0.5s ease-in-out;
}

.intro-h2:hover {
    font-size: 1rem;
}

.pg-img {
    border-radius: 50%;
    height: 300px;
    transition: height 0.5s, border-radius 0.5s;
}
.pg-img:hover {
    border-radius: 30%;
    height: 340px;
}

.pg-div-img {
    text-align: center;
    padding-top: 3rem;
}

.pg-contact-div-img {
  text-align: left;
  padding-left: 3rem;
  padding-top: 50px;
}

.pg-contact-img {
  border-radius: 50%;
  height: 100px;
  transition: height 0.5s, border-radius 0.5s;
}
.pg-contact-img:hover {
  border-radius: 30%;
  height: 110px;
}

.spacer-detail-intro {
    padding-top: 5rem;
}

.spacer-detail-intro2 {
  padding-top: 1.9rem;
}

.detail-intro-bg {
    text-align: center;
    align-items: center;
    background-color: #5e2159;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.detail-intro {
    text-align: center;
    color: #fff;
    width: 50%;
    min-width: 300px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.form-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  padding-top: 30px;
  /* height: 130vh; */
}

#step2 {
  color: #fff;
  border: 1px solid white;
}
#step2Content {
  padding: 10px;
}

form {
  min-width: 280px;
  max-width: 360px;
  padding: 1.5rem;
  background-color: #2b0828e3;
  border-radius: 30px;
  display: inline-block;
}

h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-size:larger;
}

label {
  font-weight: bold;
  color: #ddd;
}

input[type="text"],
input[type="number"],
input[type="Email"],
textarea {
  width: calc(100% - 20px);
  padding: 12px;
  border: 1px solid #551e50;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
  background-color: rgba(0,0,0,0);
  color: #fff;
}

input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus {
  border-color: #fff;
}

.p-notice {
  color: white;
}

.submit-button {
  background-color: transparent;
  color: #fff;
  border: 1px solid #7a3475;
  border-radius: 15px;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin-right: 10px;
}

.submit-button:hover {
  background-color: #7a3475;
  color: #fff;
  border-color: #fff;
}

 /* Styles for the QR code popup modal */
 .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0);
}

.modal-content {
  background-color: #7a3475;
  color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 290px;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
  color: #fff;
}

.modal-close {
  position: fixed;
  color: #aaa;
  float: right;
  font-size: 28px;
}

.modal-close:hover {
  position: fixed;
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close {
  position: fixed;
  color: #aaa;
  float: right;
  font-size: 28px;
  cursor: pointer;
}

.close:hover {
  position: fixed;
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.112);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000; /* Make sure it covers other content */
  }
  
  .loading-content {
	text-align: center;
  }

.hidden {
	display: none;
}

.loader {
	color: #ffffff;
}