/* Global Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f0f0;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation: absolute top, glass overlay, white text */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-block;
}

.logo-image {
  max-height: 30px;
  width: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin: 0 15px;
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  padding: 8px 5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ddd;
}

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

/* Dropdown Menu with glass effect */
.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  padding: 10px 0;
  min-width: 150px;
  border-radius: 8px;
  list-style: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Auth Buttons: Glass style with transparent background */
.auth-buttons a {
  margin-left: 15px;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9em;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.auth-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Mobile menu toggle icon */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5em;
  color: #fff;
}

/* Hero Section with Slider */
.hero {
  position: relative;
  background: linear-gradient(135deg, #2c3e50, #4ca1af);
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.15;
  z-index: 1;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  padding: 20px;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.1em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.hero-price {
  font-size: 3em;
  color: #FFEB3B;
  margin-bottom: 20px;
}

/* Glass Effect Button for Hero */
.btn-more {
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-more:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Hero Slider Fix: Add min-height so slides show up */
.hero-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slider .slide img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* Support Section */
.support {
  width: 100%;
  background: #fff;
  padding: 60px 0;
}

.support-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.support-item {
  flex: 1 1 200px;
  margin: 20px;
  padding: 30px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item i {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #212121;
}

.support-item h3 {
  margin-bottom: 10px;
  font-size: 1.3em;
}

.support-item p {
  color: #666;
  font-size: 0.95em;
}

.support-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.stats {
  width: 100%;
  background: linear-gradient(135deg, #00BCD4, #009688);
  padding: 60px 0;
  color: #fff;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.stats-text {
  flex: 1;
  padding: 20px;
}

.stats-text h2 {
  font-size: 2.4em;
  margin-bottom: 10px;
}

.stats-text p {
  font-size: 1.1em;
}

.stats-numbers {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.stat-item {
  text-align: center;
  margin: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.stat-item i {
  font-size: 3em;
  margin-bottom: 10px;
  color: #fff;
}

.stat-item h3 {
  font-size: 1.8em;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 1em;
}

.stat-item:hover {
  transform: scale(1.05);
}

/* Features Section */
.features {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.features-container h2 {
  font-size: 2.8em;
  margin-bottom: 40px;
  color: #212121;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: linear-gradient(135deg, #fdfdfd, #f1f1f1);
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, rgba(33, 33, 33, 0.1), rgba(33, 33, 33, 0));
  z-index: -1;
  border-radius: 12px;
}

.feature-card i {
  font-size: 2.5em;
  color: #212121;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #212121;
}

.feature-card p {
  font-size: 0.95em;
  color: #555;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* See All Features Button with vibrant gradient & 3D style */
.btn-all-features {
  padding: 12px 30px;
  background: linear-gradient(45deg, #2193b0, #6dd5ed);
  border: none;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-all-features:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Introduction Video Section */
.intro-video {
  width: 100%;
  background: #e9e9e9;
  padding: 60px 0;
}

.intro-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.intro-text {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.intro-text h2 {
  font-size: 2.4em;
  margin-bottom: 10px;
  color: #212121;
}

.intro-text p {
  font-size: 1.1em;
  color: #555;
}

.intro-video-wrapper {
  flex: 1;
  padding: 20px;
}

.intro-video-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

/* Demo Section with colored 3D button */
.demo {
  width: 100%;
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.demo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(8px);
  z-index: -1;
  border-radius: 16px;
}

.demo-container {
  position: relative;
  z-index: 2;
}

.demo-content h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #333;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.demo-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

.btn-demo {
  padding: 12px 30px;
  background: linear-gradient(45deg, #ee9ca7, #ffdde1);
  border: none;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-demo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Reseller Section */
.reseller {
  width: 100%;
  background: linear-gradient(135deg, #2c3e50, #4ca1af);
  color: #fff;
  padding: 60px 0;
}

.reseller-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.reseller-text {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.reseller-text h2 {
  font-size: 2.4em;
  margin-bottom: 10px;
}

.reseller-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.reseller-image {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.reseller-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.reseller-image img:hover {
  transform: scale(1.05);
}

/* Glass Effect Button for Reseller */
.btn-learn-more {
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-learn-more:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Affiliate Section */
.affiliate {
  width: 100%;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  padding: 60px 0;
}

.affiliate-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.affiliate-text {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.affiliate-text h2 {
  font-size: 2.4em;
  margin-bottom: 10px;
}

.affiliate-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.affiliate-image {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.affiliate-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.affiliate-image img:hover {
  transform: scale(1.05);
}

/* Glass Effect Button for Affiliate (same as reseller) */
.btn-learn-more:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Footer */
footer {
  width: 100%;
  background: linear-gradient(135deg, #212121, #444);
  color: #fff;
  padding: 40px 0;
}

.footer-container {
  text-align: center;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.footer-link {
  margin: 5px 15px;
}

.footer-link a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.footer-link a i {
  margin-right: 5px;
  font-size: 1.2em;
}

.footer-link a:hover {
  color: #ddd;
}

.footer-social-row {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  margin: 0 10px;
  color: #fff;
  font-size: 1.4em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  color: #ffeb3b;
}

.footer-bottom {
  margin-top: 10px;
}

.footer-bottom p {
  font-size: 0.95em;
  color: #ccc;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    display: none;
    width: 100%;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 30px;
  }

  .stats-container {
    flex-direction: column;
    text-align: center;
  }

  .intro-container {
    flex-direction: column;
    text-align: center;
  }

  .reseller-container,
  .affiliate-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links-row,
  .footer-social-row {
    flex-direction: column;
  }

  .footer-link {
    margin: 5px 0;
  }
}