* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  color: #1b2c2e;
}

.row > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-top: 0 !important;
}

.full-screen-wrapper {
  height: 100vh;
  width: 100%;
}

.left-section {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background-image: url("../img/1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.left-section-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.left-section img.logo {
  width: 25%;
}

.left-section h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 0;
}

.left-section h1 span {
  color: #0d473b;
  letter-spacing: 0.15rem;
}

.left-section .description {
  line-height: 1.7;
  max-width: 600px;
  color: #606060;
  font-size: 16px;
}

.right-section {
  height: 100%;
  /* background: #121417; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 2rem; */
}

.footer {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  margin-top: 20px !important;
}

.social-icons a {
  margin-right: 10px;
  color: #0d473b;
  font-size: 1rem;
  transition: color 0.3s;
}

.social-icons a:last-child {
  margin-right: 0;
}

.social-icons a:hover {
  color: #f7931e;
}

/* Button */
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 30px;
  border: 4px solid transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 500;
  color: #606060;
  box-shadow: 0 0 0 2px #0d473b;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: fit-content;
}

.animated-button svg {
  position: absolute;
  width: 18px;
  fill: #0d473b;
  z-index: 9;
  transition: all 0.8s;
}

.animated-button:hover svg {
  fill: #fff;
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #0d473b;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s;
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s;
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: white;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* video */
.video-wrapper {
  width: 100%;
  max-width: 100%; /* Good for col-lg-4 on desktops */
  height: 100%; /* Adjust for your video proportions */
  /* border-radius: 12px; */
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Popup Form */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: url("../img/1.webp") no-repeat center center / cover;
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 350px;
  position: relative;
  animation: fadeInUp 0.5s ease forwards;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); /* Optional: improve readability */
}

.popup-content.hide {
  animation: fadeOutDown 0.4s ease forwards;
}

.popup-content h2 {
  color: #000605;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 22px;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  background: #fff;
  color: #000605;
  border: none !important;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 15px;
}

.popup-content button {
  width: auto;
  padding: 10px 30px;
  border: none;
  background: #0d473b;
  color: white;
  border-radius: 100px;
  font-size: 16px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  color: #000605;
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(40px);
  }
}

@media (max-width: 992px) {
  html,
  body {
    overflow-y: auto;
  }

  .full-screen-wrapper {
    height: auto;
  }

  .left-section,
  .right-section {
    height: auto;
    text-align: center;
  }

  .left-section-content {
    align-items: center;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer {
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #063f36;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: clip-path 1s ease-in-out, opacity 1s ease-in-out;
  clip-path: circle(100% at 50% 50%);
}

.loader-wrapper.reveal {
  clip-path: circle(0% at 50% 50%);
  opacity: 0;
}

.loader-text p {
  color: #fff;
  font-family: Avenir Next, Helvetica Neue, Helvetica, Tahoma, sans-serif;
  font-size: 1em;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.loader-text p span {
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
  perspective: 500;
  -webkit-font-smoothing: antialiased;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.loader-text p span::before,
.loader-text p span::after {
  display: none;
  position: absolute;
  top: 0;
  left: -1px;
  transform-origin: left top;
  transition: all ease-out 0.3s;
  content: attr(data-text);
}

.loader-text p span::before {
  z-index: 1;
  color: rgba(0, 0, 0, 0.2);
  transform: scale(1.1, 1) skew(0deg, 20deg);
}

.loader-text p span::after {
  z-index: 2;
  color: #e29d23;
  text-shadow: -1px 0 1px #e29d23, 1px 0 1px rgba(0, 0, 0, 0.8);
  transform: rotateY(-40deg);
}

.loader-text p span:hover::before {
  transform: scale(1.1, 1) skew(0deg, 5deg);
}

.loader-text p span:hover::after {
  transform: rotateY(-10deg);
}

.loader-text p span + span {
  margin-left: 0.3em;
}

@media (min-width: 20em) {
  .loader-text p {
    font-size: 1.8em;
  }

  .loader-text p span::before,
  .loader-text p span::after {
    display: block;
  }
}

@media (min-width: 30em) {
  .loader-text p {
    font-size: 2.4em;
  }
}

@media (min-width: 40em) {
  .loader-text p {
    font-size: 3em;
  }
}

@media (min-width: 60em) {
  .loader-text p {
    font-size: 65px;
  }
}
