/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Custom Scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #ff0000 #0a192f;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a192f;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #007bff, #00c4ff);
  border-radius: 5px;
  border: 2px solid #0a192f;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0056b3, #0096cc);
}

/* Hide default cursor */
body {
  cursor: none;
  background: linear-gradient(135deg, #210e01, #270404);
  color: #ccd6f6;
}

/* Custom Cursor Styles */
.custom-cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #ff0000, #ff000d);
  border: none;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: all 0.2s ease-out;
  box-shadow: 0 0 10px rgba(255, 1, 1, 0.6), 0 0 20px rgba(0, 196, 255, 0.3);
}

.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0.8;
}

/* Trail Dot Styles */
.trail-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.5), rgba(0, 196, 255, 0.5));
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  animation: trailFade 0.7s ease-out forwards;
}

@keyframes trailFade {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
}

/* Particle Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Modern Header Styles */
.modern-header {

  position: sticky;
  top: 0;
  z-index: 900;
  transition: all 0.3s ease;
}

.modern-header.scrolled {
  background: linear-gradient(90deg, #ff0202, #ff0202);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
}

.logo-container {
  flex: 0 0 auto;
}

.logo {
  height: 45px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

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

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

.main-nav a:hover {
  color: #f0f0f0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-btn {
  background-color: #fff;
  color: #007bff;
  padding: 7px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

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

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

.login-btn:hover {
  background-color: #e6e6e6;
  color: #0056b3;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #e71313, #610006);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 800;
    transition: transform 0.4s ease;
    transform: translateX(-100%);
  }

  .main-nav.active {
    display: flex;
    transform: translateX(0);
  }

  .main-nav a {
    padding: 12px 0;
    font-size: 16px;
    text-align: center;
  }

  .header-actions {
    gap: 8px;
  }

  .login-btn {
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 15px;
}

/* Hero Section */


.hero::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;

  border: 2px solid transparent;
 
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0% { border-image: linear-gradient(90deg, #007bff, #00c4ff) 1; }
  50% { border-image: linear-gradient(90deg, #00c4ff, #007bff) 1; }
  100% { border-image: linear-gradient(90deg, #007bff, #00c4ff) 1; }
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.hero-text p {
  font-size: 16px;
  color: #ccd6f6;
  line-height: 1.6;
  margin-bottom: 25px;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-btn {
  background: linear-gradient(90deg, #ed0000, #ffffff36);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.download-btn:hover {
  background: linear-gradient(90deg, #ffffff36, #ed0000);
  transform: translateY(-2px);
}

.download-btn.alt {
  background: transparent;
  color: #fff;
  border: 2px solid #ffffff;
}

.download-btn.alt:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #0056b3;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Reseller Section */
.resellers {
  padding: 30px 0;
}

.resellers h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.reseller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.reseller-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reseller-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, #007bff, #00c4ff) 1;
  animation: borderGlow 3s ease-in-out infinite;
}

.reseller-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.reseller-image-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00c4ff;
  transition: border-color 0.3s ease;
}

.reseller-card:hover .reseller-image-wrapper {
  border-color: #007bff;
}

.reseller-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reseller-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.reseller-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.reseller-card h4 {
  font-size: 14px;
  font-weight: 500;
  color: #00c4ff;
  margin-bottom: 8px;
}

.reseller-card p {
  font-size: 14px;
  color: #ccd6f6;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  display: inline-block;
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  pointer-events: auto; /* Ensure links are clickable */
}

.social-links a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Ensure no overlapping elements */
.reseller-card * {
  position: relative;
  z-index: 1;
}

/* Contact Section */
/* Contact Us Section */
.contact {
  padding: 60px 20px;

  text-align: center;
  font-family: Arial, sans-serif;
}

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

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #718096;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-box {
 
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 1.5rem;
  color: #6366f1;
  margin-bottom: 1rem;
}

.info-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0;
}

.info-box a {
  color: #6366f1;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  color: #2d3748;
  background-color: #edf2f7;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #8e0000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #4c51bf;
}

/* Dark Theme Support */
@media (prefers-color-scheme: dark) {
  .contact {
   
    color: #e2e8f0;
  }

  .contact-title {
    color: #e2e8f0;
  }

  .contact-subtitle {
    color: #a0aec0;
  }

  .info-box {
    background-color: #ccd6f63d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .info-box h3 {
    color: #e2e8f0;
  }

  .info-box p {
    color: #a0aec0;
  }

  .info-box a {
    color: #a3bffa;
  }

  .contact-form {
    background-color: #ffffff4a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .contact-form h3 {
    color: #e2e8f0;
  }

  .form-group input,
  .form-group textarea {



  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #a3bffa;

  }

  .submit-btn {
    background-color: #a3bffa;
  }

  .submit-btn:hover {
    background-color: #6366f1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    max-width: 100%;
  }
}

/* Footer */
footer {
  padding: 10px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-img {
  height: 40px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

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

.footer-social a {
  color: #ccd6f6;
  font-size: 20px;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #00c4ff;
  transform: scale(1.2);
}

footer p {
  font-size: 14px;
  color: #8892b0;
}

/* Animation for Hero Text */
.animate-fade-up {
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .container {
    padding: 40px 10px;
  }

  .hero {
    padding: 20px 10px;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .download-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .resellers h2 {
    font-size: 24px;
  }

  .reseller-image-wrapper {
    width: 100px;
    height: 100px;
  }

  .reseller-card h3 {
    font-size: 18px;
  }

  .reseller-card h4 {
    font-size: 13px;
  }

  .reseller-card p {
    font-size: 13px;
  }

  .social-links a {
    font-size: 16px;
  }

  .contact h2 {
    font-size: 24px;
  }

  .contact-subtitle {
    font-size: 14px;
  }

  .contact-info h3 {
    font-size: 18px;
  }

  .contact-info .social-links a {
    font-size: 14px;
  }

  .footer-logo-img {
    height: 35px;
  }

  .footer-social a {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-btn {
    width: 100%;
    text-align: center;
  }

  .resellers h2 {
    font-size: 22px;
  }

  .reseller-card {
    padding: 12px;
  }

  .reseller-image-wrapper {
    width: 90px;
    height: 90px;
  }

  .contact-content {
    flex-direction: column;
    gap: 20px;
  }
}

/* Popup Styling */
    .ip-popup {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: rgba(10, 25, 47, 0.9);
      color: #fff;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: none;
      max-width: 300px;
      font-size: 14px;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .ip-popup.show {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }
    .ip-popup.hidden {
      opacity: 0;
      transform: translateY(20px);
    }
    .ip-popup h3 {
      margin: 0 0 10px;
      font-size: 16px;
      font-weight: 600;
    }
    .ip-popup p {
      margin: 0;
      font-size: 14px;
    }
    .ip-popup .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
    }
    .ip-toggle-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #b71c1c; /* Changed to red to match theme */
      color: #fff;
      padding: 10px 15px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 999;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    .ip-toggle-btn:hover {
      background: #8e0000; /* Darker red */
    }
    .retry-btn {
      margin-top: 10px;
      padding: 5px 10px;
      background: #b71c1c; /* Changed to red to match theme */
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .retry-btn:hover {
      background: #8e0000; /* Darker red */
    }

    /* Custom Cursor Styling */
    .custom-cursor {
      position: fixed;
      width: 40px;
      height: 40px;
      pointer-events: none;
      z-index: 9999;
      background: url('cursor-pointer.png') no-repeat center center; /* Path to your pointer cursor image */
      background-size: contain;
      transition: transform 0.1s ease;
    }

    /* Hand cursor state */
    .custom-cursor.hover {
      background: url('cursor-hand.png') no-repeat center center; /* Path to your hand cursor image */
      background-size: contain;
    }

    /* Aurora effect using pseudo-elements */
    .custom-cursor::before,
    .custom-cursor::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      background: transparent;
      border: 2px solid #00eaff; /* Teal color for aurora effect */
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: aurora 1s infinite alternate;
      opacity: 0.7;
    }

    /* Second layer of aurora effect */
    .custom-cursor::after {
      animation: aurora 0.8s infinite alternate;
      border-color: #a200ff; /* Purple color for aurora effect */
      opacity: 0.5;
    }

    /* Aurora animation */
    @keyframes aurora {
      0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
      }
      100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
      }
    }

    /* Trail dot styling for mouse trail */
    .trail-dot {
      position: fixed;
      width: 6px;
      height: 6px;
      background: #00eaff; /* Teal to match aurora theme */
      border-radius: 50%;
      pointer-events: none;
      animation: fade 0.5s ease forwards;
    }

    @keyframes fade {
      0% {
        opacity: 1;
        transform: scale(1);
      }
      100% {
        opacity: 0;
        transform: scale(0.5);
      }
    }

