@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: rgb(0, 128, 128);
  --secondary-color: rgb(225, 244, 244);
}

body {
  font-family: "Unbounded";
}
main {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.main_bg {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.main_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 60px 60px;
  margin-left: auto;
  width: 95%;
}
.logo {
  height: auto;
  width: auto;
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
}
.logo img {
  margin-right: 5px;
  max-width: 120px;
  max-height: 130px;
}
.logo h2 {
  font-size: 38px;
  font-weight: 900;

  font-family: "Poppins";
  color: rgb(255, 255, 255);
}
.logo span {
  font-size: 13px;
  display: block;
  color: rgb(178, 178, 178);
  font-weight: bold;
}
.socialIcons {
  display: flex;
  align-items: center;
  padding-right: 80px;
}
.socialIcons a {
  text-decoration: none;
}
.socialIcons i {
  border-radius: 50%;
  background-color: var(--primary-color);
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  font-size: 14px;
  color: rgb(255, 255, 255);
  margin: 0 5px;
  transition: 0.1s linear;
}
.socialIcons .fa-facebook-f {
  background-color: rgb(0, 94, 222);
}
.socialIcons .fa-tiktok {
  background-color: rgb(53, 53, 53);
}
.socialIcons .fa-instagram {
  background-color: rgb(222, 85, 0);
}
.socialIcons .fa-youtube {
  background-color: rgb(226, 11, 5);
}
.socialIcons i:hover {
  padding-bottom: 10px;
}
.collapseNav {
  position: fixed;
  width: 30%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: rgb(21, 21, 21);
  transform: translateX(100%);
  transition: 0.5s;
  padding: 50px;
  padding-top: 200px;
  text-align: center;
  z-index: 100000000;
}
.callcollapse,
.hidecollapse {
  border-radius: 50%;
  background-color: rgb(183, 1, 1);
  width: 53px;
  height: 53px;
  display: grid;
  place-content: center;
  font-size: 20px;
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.hidecollapse {
  position: absolute;
  top: 20px;
  right: 20px;
}
.collapseNav .socialIcons {
  justify-content: center;
  padding-right: 0;
}
.copyright {
  width: 100%;
  height: 100px;
  font-size: 12px;
  color: rgb(164, 164, 164);
  font-weight: bold;
  display: grid;
  place-content: center;
}
article {
  font-weight: 400;
  font-size: 14px;
  color: rgb(164, 164, 164);
}

.wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 60px 0 80px 0;
}
form {
  height: auto;
  width: 100%;
  padding: 85px 90px;
  background-color: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
  margin-right: 50px;
  margin-bottom: 30px;
}
.formText {
  margin-bottom: 50px;
}
.formText p {
  font-size: 14px;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
}
.formText h2 {
  font-size: 50px;
  font-weight: 300;
  color: rgb(0, 0, 0);
  line-height: 1;
}
.formText h2 span {
  font-weight: 900;
  display: block;
  margin-top: 10px;
}

.textInput {
  width: 100%;
  height: 75px;
  border: solid 2px transparent;
  background-color: rgb(201, 197, 197);
  transition: 0.5s;
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: 16px;
  font-family: "Poppins";
  color: rgb(78, 76, 76);
  font-weight: 500;
}
.textInput:focus {
  outline: none;
  border-color: rgb(149, 2, 2);
}
textarea.textInput {
  height: 200px;
  padding-top: 30px;
}
.submit {
  background-color: rgb(166, 1, 1);
  padding: 0 50px;
  border: 0;

  font-size: 16px;
  font-family: "Poppins";
  color: rgb(255, 255, 255);
  font-weight: bold;

  height: 72px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.submit::before,
.submit::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0, 100% 0, 50% 100%, 0% 100%);
  transition: 0.4s;
  z-index: 0;
}
.submit:hover::before,
.submit:hover::after {
  right: -100%;
}
.submit::after {
  transition-delay: 0.2s;
}
#heroSlider {
  width: 100%;
  display: grid;
  width: 100%;
  height: 100%;
  align-content: end;
}
.slider_caption {
  width: 100%;
  height: 100%;
  padding-bottom: 80px;
}
.playbtn {
  position: relative;
  position: relative;
  z-index: 100;
}
.playbtn i {
  background-color: rgb(1, 78, 180);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: grid;
  place-content: center;
  margin: 15px 0 50px 15px;
  cursor: pointer;
  font-size: 20px;
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 100;
}
.playbtn::before,
.playbtn::after {
  content: "";
  position: absolute;
  left: 0;
  top: -14px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  z-index: 1;
  clip-path: circle(70.7% at 50% 50%);
}
.sliderVideos {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: 99999999999999999999999999999999;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
}
.sliderVideos i {
  position: absolute;
  top: 50px;
  right: 50px;
  color: rgb(225, 244, 244);
  font-size: 30px;
  cursor: pointer;
}
.sliderVideos iframe {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  display: none;
}

.headermsg {
  font-size: 16px;
  color: rgb(255, 255, 255);
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 5px;
  margin-bottom: 20px;
}
.main-heading {
  font-size: 60px;
  font-weight: 900;
  color: rgb(255, 255, 255);
}
.slider_btn,
.u_btn {
  border: solid 4px rgb(255, 255, 255);
  background-color: transparent;
  width: 252px;
  height: 95px;
  font-size: 18px;
  font-family: "Poppins";
  color: rgb(255, 255, 255);
  font-weight: bold;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
.slider_btn,
.u_btn span {
  position: relative;
}
.u_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  clip-path: circle(0% at 0 0);
  transition: 0.5s;
  opacity: 0;
}
.u_btn:hover {
  color: rgb(29, 29, 29);
}
.u_btn:hover::before {
  opacity: 1;
  clip-path: circle(141.4% at 0 0);
}
.sliderIndicators {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
  display: flex;
}
.sliderIndicators button {
  background-color: rgb(255, 255, 255);
  font-size: 16px;
  color: rgb(23, 23, 23);
  width: 200px;
  height: 80px;
  transition: 0.5s;
  border: 0;
  padding: 0;
}
.sliderIndicators button i {
  transition: 0.5s;
}
.sliderIndicators button.next {
  background-color: rgb(238, 238, 238);
}
.sliderIndicators button.prev:hover i {
  transform: translateX(-10px);
}
.sliderIndicators button:hover i {
  transform: translateX(10px);
}

/* Added styles for link buttons */
a.u_btn.slider_btn {
  display: inline-block;
  text-align: center;
  line-height: 95px; /* Match height for vertical centering */
  text-decoration: none;
}

/* Responsive mobile adjustments for button */
@media (max-width: 600px) {
  a.u_btn.slider_btn {
    width: 220px;
    height: 70px;
    line-height: 70px;
    font-size: 18px;
    border-width: 4px;
  }
}

#popupMessage {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
#popupMessage.hide {
  opacity: 0;
}
