/* Global Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* .grecaptcha-badge{
  z-index: -10 !important;
} */

#successMessage {
  display: none;
}

.btn-action-1 {
  color: #fff;
  background: linear-gradient(135deg, #004aad 0%, #0066ff 100%);
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-action-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-action-1:hover {
  color: #fff;
  background: linear-gradient(135deg, #0055cc 0%, #0077ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 74, 173, 0.4);
}

.btn-action-1:hover::before {
  left: 100%;
}

.btn-action-1:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 74, 173, 0.3);
}

.cc {
  min-width: 100% !important;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.bg-dark,
body,
html,
.bg-bg-2,
.bg-bg-3 {
  background-color: rgb(20 20 29) !important;
  color: white !important
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1,
.text-dark-1 {
  color: white !important
}

/* .btn-action-1 {
            background: var(--accent-gradient);
            border: none;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        } */


.display-5 {
  background: linear-gradient(45deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.text-white {
  color: white !important;
}

.feature-item {
  padding: 20px 15px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  color: white;
}

.feature-item:hover,
.feature-item.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-description {
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
}

.screenshot-container {
  position: relative;
  height: 500px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-3d {
  width: 100%;
  /* max-width: 450px; */
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
  position: absolute;
  opacity: 0;
  transform: rotateY(-15deg) rotateX(5deg) translateZ(-50px);
}

.screenshot-3d.active {
  opacity: 1;
  transform: rotateY(0deg) rotateX(0deg) translateZ(0px);
}

.screenshot-3d:hover {
  transform: rotateY(5deg) rotateX(-2deg) translateZ(20px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
}

.screenshot-placeholder {
  width: 100%;
  max-width: 450px;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .display-5 {
    font-size: 2.5rem;
  }

  .screenshot-container {
    height: 300px;
    margin-top: 2rem;
  }

  .feature-item {
    padding: 25px 10px;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

::selection {
  background: #014bad;
  color: white;
}

.hero-features>div {
  display: none;
  font-size: 20px;
}

.hero-features>div.active {
  display: block !important;
}

/* Hero Section Enhancements */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: radial-gradient(circle at 20% 50%, rgba(0, 74, 173, 0.1) 0%, transparent 50%); */
  pointer-events: none;
}

.hero-title {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  line-height: 1.6;
  opacity: 0.9;
}

.video-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.video-wrapper:hover {
  transform: scale(1.02);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.cta-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
  transform: translateX(4px);
}

/* Features Showcase Section */
.features-showcase {
  background: linear-gradient(180deg, rgba(20, 20, 29, 0.5) 0%, rgba(20, 20, 29, 1) 100%);
}

/* Improved Feature Items */
.feature-item {
  padding: 20px 15px;
  margin: 10px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  color: white;
  position: relative;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 204, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover::before,
.feature-item.active::before {
  opacity: 1;
}

.feature-item:hover,
.feature-item.active {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 204, 255, 0.1) 100%);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

/* Enhanced Form Styling */
.form-control {
  background-color: rgba(42, 42, 58, 0.8) !important;
  color: #ffffff !important;
  border: 2px solid #404050 !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  transition: all 0.3s ease !important;
  font-size: 1rem !important;
}

.form-control:focus {
  background-color: rgba(42, 42, 58, 0.95) !important;
  border-color: #0066ff !important;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1) !important;
  outline: none !important;
}

.form-control::placeholder {
  color: #8b92a8 !important;
  opacity: 0.7 !important;
}

/* Testimonial Cards Enhancement */
.border.rounded-2 {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(10px);
}

.border.rounded-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 102, 255, 0.3) !important;
}

/* Improved Screenshot Container */
.screenshot-container {
  position: relative;
  height: 500px;
  perspective: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-3d {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
  position: absolute;
  opacity: 0;
  transform: rotateY(-15deg) rotateX(5deg) translateZ(-50px) scale(0.95);
}

.screenshot-3d.active {
  opacity: 1;
  transform: rotateY(0deg) rotateX(0deg) translateZ(0px) scale(1);
}

.screenshot-3d:hover {
  transform: rotateY(5deg) rotateX(-2deg) translateZ(20px) scale(1.02);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

/* Smooth Transitions for All Interactive Elements */
a,
button,
input,
textarea,
select {
  transition: all 0.3s ease;
}

/* Improved Link Hover States */
a:not(.btn) {
  position: relative;
  text-decoration: none;
}

a:not(.btn):hover {
  opacity: 0.8;
}

/* Enhanced Section Spacing */
section {
  position: relative;
}

/* Improved Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .screenshot-container {
    height: 300px;
    margin-top: 2rem;
  }

  .feature-item {
    padding: 18px 12px;
  }

  .feature-item:hover,
  .feature-item.active {
    transform: translateX(5px);
  }
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Focus Visible for Accessibility */
*:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Enhanced Navbar Styles */
.navbar-enhanced {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-enhanced.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-link-enhanced {
  color: white !important;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link-enhanced::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0066ff, #00ccff);
  transition: width 0.3s ease;
}

.nav-link-enhanced:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.nav-link-enhanced:hover::after {
  width: 80%;
}

.nav-link-enhanced.active {
  background: rgba(255, 255, 255, 0.15);
}

.btn-login {
  color: white !important;
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 8px !important;
  padding: 8px 20px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Enhancements */
.custom-mobile-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  transition: all 0.3s ease;
}

.custom-mobile-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.offcanvas {
  backdrop-filter: blur(10px);
}

.offcanvas-body a {
  transition: all 0.3s ease;
  padding: 12px 0;
  border-radius: 8px;
}

.offcanvas-body a:hover {
  padding-left: 10px;
  color: #0066ff !important;
}

/* CTA Section */
.cta-section {
  /* background: linear-gradient(135deg, rgba(0, 74, 173, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%); */
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.signup-image {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.signup-image:hover {
  transform: scale(1.02);
}

/* Testimonials Section */
.testimonials-section {
  /* background: linear-gradient(180deg, rgba(20, 20, 29, 1) 0%, rgba(20, 20, 29, 0.8) 100%); */
}

.testimonial-card {
  transition: all 0.3s ease;
  /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%); */
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 102, 255, 0.4) !important;
}

.testimonial-card .fill-action-6 {
  fill: #fbbf24;
}

/* Contact Section */
.contact-section {
  /* background: linear-gradient(135deg, rgba(0, 74, 173, 0.03) 0%, rgba(0, 102, 255, 0.03) 100%); */
}

/* Button Enhancements */
button.btn-action-1 {
  cursor: pointer;
  font-size: 1.1rem;
}

button.btn-action-1:hover {
  transform: translateY(-2px);
}

button.btn-action-1:active {
  transform: translateY(0);
}

/* Improved Spacing */
.mb-10 {
  margin-bottom: 4rem !important;
}

.mb-15 {
  margin-bottom: 6rem !important;
}

/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
}

.img-fluid {
  display: block;
}

/* Alert Styling */
.alert {
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 500;
}

.alert-action-8 {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 2px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.alert-action-5 {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 2px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}