#mycontainer {
  position: absolute;
  z-index: 1900;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
  font-family: "Montserrat", sans-serif;
  background-color: transparent;
}

#mysubcontainer {
  display: flex;
  justify-content: center;
  /* Horizontally center */
  align-items: center;
  /* Vertically center */
  width: 100%;
  height: 100%;
  pointer-events: inherit;
  background-color: transparent;
}

.radio-input {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 50px;
  margin: 0;
  flex-direction: row;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  pointer-events: all;
  margin-top: 25px;
}

.radio-input input[type="radio"] {
  pointer-events: all;
  display: none;
}

.radio-input label {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #4e5821;
  border-radius: 5px;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.radio-input label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #968577;
  border: 2px solid #968577;
  transition: all 0.3s ease-in-out;
}

.radio-input input[type="radio"]:checked+label:before {
  background-color: green;
  top: 0;
}

.radio-input input[type="radio"]:checked+label {
  background-color: #9DB041;
  color: #fff;
  border-color: rgb(129, 235, 129);
  animation: radio-translate 0.5s ease-in-out;
}

@keyframes radio-translate {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateX(0);
  }
}


/* contact us start */

.ContactUs {
  position: absolute;
  margin-top: 75px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 500px;
  width: 500px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(78, 88, 33, 0.85);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 20px;
  filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.125));
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  pointer-events: all;
}

.container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-info span {
  display: block;
  margin-bottom: 10px;
  /* Optional: Adds space between lines */
  color: #fff;
}

.wrapper {
  width: 100%;
  height: 100%;

}

.banner-image {
  background-image: url("ContactUs.jpg");
  background-position: center;
  background-size: cover;
  height: 250px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.255)
}

h1 {
  color: rgba(255, 255, 255, 0.98);
  text-transform: uppercase;
  font-size: 25px;
}

.fas.fa-phone {
  color: rgb(129, 235, 129);
  /* Change the color */
  font-size: 18px;
  /* Adjust the size */
}

.fas.fa-envelope {
  color: rgb(129, 235, 129);
  /* Change the color */
  font-size: 18px;
  /* Adjust the size */
}

.fas.fa-map-marker-alt {
  color: rgb(129, 235, 129);
  /* Change the color */
  font-size: 20px;
  /* Adjust the size */
}

.button-wrapper {
  margin-top: 5px;
}

.btn {
  border: none;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
}

.btn+.btn {
  margin-left: 10px;
}

.outline {
  background: transparent;
  color: rgba(0, 212, 255, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.6);
  transition: all .3s ease;

}

.outline:hover {
  transform: scale(1.125);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  transition: all .3s ease;
}

.fill {
  background: rgba(129, 235, 129, 0.9);
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0);
  font-weight: bold;
  transition: all .3s ease;
}

.fill:hover {
  transform: scale(1.125);
  border-color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.125));
  transition: all .3s ease;
}

/* contact us end */

/* about us start */

.AboutUs {
  position: absolute;
  margin-top: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(78, 88, 33, 0.85);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding-left: 1px;
  padding-right: 2px;
  padding-top: 1px;
  padding-bottom: 20px;
  filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.125));
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  pointer-events: all;
}


@media (max-width: 600px) {
  .AboutUs {
      width: 90%; /* Adjust for smaller screens */
  }
}

.banner-container {
  position: relative;
  width: 100%;
  height: 250px;
  /* Match the height of the banner image */
}

.banner-image-about {
  background-image: url("AboutUs.jpg");
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.255);
}

.banner-container h2 {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.98);
  font-size: 20px;
  text-align: center;
}

p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding-left: 15px;
  padding-right: 15px;
}

h2 {
  color: rgba(255, 255, 255, 0.98);
  font-size: 20px;
}

/* about us end */

/* 3d hover text */
.Text3Dcontainer {
  perspective: 1000px;
}

.flatTextOnGround {
  transform: rotate3D(90, 45, -90, 87deg) !important;
  transform-origin: bottom !important;
}

.text-3d {
  /* transform: rotateX(90deg) !important; */
  /* transform-origin: bottom !important; */
  font-weight: bold;
  font-family: Arial;
  text-transform: uppercase;
  font-size: 80px;
  color: #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow:
    0 1px 0 rgb(190, 190, 190),
    0 2px 0 rgb(185, 185, 185),
    0 3px 0 rgb(180, 180, 180),
    0 4px 0 rgb(175, 175, 175),
    0 5px 0 rgb(170, 170, 170),
    0 6px 0 rgb(165, 165, 165),
    0 7px 0 rgb(160, 160, 160),

    0 1px 5px rgba(0, 0, 0, .05),
    0 3px 5px rgba(0, 0, 0, .10),
    0 5px 10px rgba(0, 0, 0, .15),
    0 7px 10px rgba(0, 0, 0, .20),
    0 10px 15px rgba(0, 0, 0, .25);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.text-3d:hover {
  text-shadow:
    0 1px 0 rgb(190, 190, 190),
    0 2px 0 rgb(185, 185, 185),
    0 3px 0 rgb(180, 180, 180),
    0 4px 0 rgb(175, 175, 175),
    0 5px 0 rgb(170, 170, 170),
    0 6px 0 rgb(165, 165, 165),
    0 7px 0 rgb(160, 160, 160),
    0 8px 0 rgb(155, 155, 155),
    0 9px 0 rgb(150, 150, 150),

    0 1px 5px rgba(0, 0, 0, .05),
    0 5px 5px rgba(0, 0, 0, .10),
    0 10px 10px rgba(0, 0, 0, .15),
    0 15px 10px rgba(0, 0, 0, .20),
    0 20px 15px rgba(0, 0, 0, .25);
  transform: translate(-51%, -51%);
  transition: all 0.3s ease-in-out;
}



/* intro text animation */
.nameReveal {
  background: 50% 100%/50% 50% no-repeat radial-gradient(ellipse at bottom, #fff, transparent, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 10vw;
  font-family: "Source Sans Pro", sans-serif;
  -webkit-animation: reveal 3000ms ease-in-out forwards 200ms, glow 2500ms linear infinite 2000ms;
  animation: reveal 3000ms ease-in-out forwards 200ms, glow 2500ms linear infinite 2000ms;
}

@-webkit-keyframes reveal {
  80% {
    letter-spacing: 8px;
  }

  100% {
    background-size: 300% 300%;
  }
}

@keyframes reveal {
  80% {
    letter-spacing: 8px;
  }

  100% {
    background-size: 300% 300%;
  }
}

@-webkit-keyframes glow {
  40% {
    text-shadow: 0 0 8px #fff;
  }
}

@keyframes glow {
  40% {
    text-shadow: 0 0 8px #fff;
  }
}



