html {
  scroll-behavior: smooth !important;
}

.fullscreen-section {
  height: 100vh;
  position: relative;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  font-family: "Poppins", sans-serif !important;
}

/* Content positioning classes */
.fullscreen-section.position-center-middle {
  align-items: center;
  justify-content: center;
}

.fullscreen-section.position-center-top {
  align-items: flex-start;
  justify-content: center;
}

.fullscreen-section.position-center-bottom {
  align-items: flex-end;
  justify-content: center;
}

.fullscreen-section.position-left-middle {
  align-items: center;
  justify-content: flex-start;
}

.fullscreen-section.position-left-top {
  align-items: flex-start;
  justify-content: flex-start;
}

.fullscreen-section.position-left-bottom {
  align-items: flex-end;
  justify-content: flex-start;
}

.fullscreen-section.position-right-middle {
  align-items: center;
  justify-content: flex-end;
}

.fullscreen-section.position-right-top {
  align-items: flex-start;
  justify-content: flex-end;
}

.fullscreen-section.position-right-bottom {
  align-items: flex-end;
  justify-content: flex-end;
}

/* Text alignment based on position */
.fullscreen-section[class*="position-center-"] .content {
  text-align: center;
}

.fullscreen-section[class*="position-left-"] .content {
  text-align: left;
  padding-left: 20%;
}

.fullscreen-section[class*="position-right-"] .content {
  text-align: right;
  padding-right: 20%;
}

.fullscreen-section[class*="position-center-bottom"] .content {
  text-align: center;
  padding-bottom: 10%;
}

.fullscreen-section .content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fullscreen-section .content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif !important;
  color: white !important;
}
.fullscreen-section .content p {
  font-size: 1.2rem;
  margin-bottom: 7.5rem;
  line-height: 1.5;
  font-family: "Poppins", sans-serif !important;
  color: white !important;
}
.fullscreen-section .content .btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.1s ease;
}

/* Cyberpunk-style hover effects for buttons */
.fullscreen-section .content .btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0 15px #eb7025, 0 0 30px rgba(235, 112, 37, 0.3);
  filter: brightness(1.2);
  border-width: 2px !important;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #eb7025, 0 0 10px rgba(235, 112, 37, 0.8);
  animation: cyberpulse 1.5s infinite alternate;
  font-weight: 500;
}

.fullscreen-section .content .btn:hover::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid #eb7025;
  border-radius: inherit;
  animation: cyberborder 2s linear infinite;
  z-index: -1;
}

.fullscreen-section .content .btn:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(235, 112, 37, 0.4), transparent);
  z-index: -1;
  animation: cybershine 2s linear infinite;
}

@keyframes cyberpulse {
  0% {
    box-shadow: 0 0 15px #eb7025, 0 0 30px rgba(235, 112, 37, 0.3);
  }
  100% {
    box-shadow: 0 0 20px #eb7025, 0 0 40px rgba(235, 112, 37, 0.5);
  }
}

@keyframes cyberborder {
  0% {
    clip-path: inset(0 0 98% 0);
  }
  25% {
    clip-path: inset(0 98% 0 0);
  }
  50% {
    clip-path: inset(98% 0 0 0);
  }
  75% {
    clip-path: inset(0 0 0 98%);
  }
  100% {
    clip-path: inset(0 0 98% 0);
  }
}

@keyframes cybershine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.fullscreen-section .content .btn:active {
  transform: translateY(1px);
  box-shadow: 0 0 10px #eb7025;
  animation-play-state: paused;
}

/* Focus state for accessibility */
.fullscreen-section .content .btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px #eb7025, 0 0 15px rgba(235, 112, 37, 0.5);
}
.fullscreen-section video,
.fullscreen-section .background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .fullscreen-section .content h1 {
    font-size: 2.5rem;
  }
  .fullscreen-section .content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  .fullscreen-section {
    height: 300px !important;
  }
  .fullscreen-section[class*="position-left-"] .content {
    text-align: left;
    padding-left: 10px;
  }
  .fullscreen-section[class*="position-right-"] .content {
    text-align: right;
    padding-right: 10px;
  }
}

@media (max-width: 768px) {
  .fullscreen-section .content h1 {
    font-size: 2rem;
  }
  .fullscreen-section .content p {
    font-size: 1rem;
  }
  /* Disable parallax on mobile for better performance */
  .fullscreen-section[style*="background-attachment: fixed"] {
    background-attachment: scroll !important;
  }
}

@media (max-width: 480px) {
  .fullscreen-section .content {
    padding: 40px 15px;
  }
  .fullscreen-section .content h1 {
    font-size: 1.4rem;
  }
  .fullscreen-section .content p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .fullscreen-section .content .btn {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
  .fullscreen-section {
    height: 207px !important;
  }
}
