/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f8fb;
    color: #333;
    line-height: 1.6;
  }
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  
    .container {
      max-width: 100%;
      width: 90%;
      margin: auto;
      background: #f5f5f5;
      padding: 20px;
      box-sizing: border-box;
      border-radius: 10px;
    }
  
    @media (max-width: 600px) {
      h1 {
        font-size: 1.5rem;
      }
  
      p {
        font-size: 0.95rem;
      }
    }
    
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #ffffff;
      padding: 10px 12px; /* reduced padding */
      border-bottom: 2px solid #3400f0;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      position: relative;
      width: 100%;
      max-width: 100vw;
      overflow-x: hidden;
    }
    
    .nav-logo img {
      height: 35px; /* reduced size */
      width: auto;
      max-width: 100%;
      display: block;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }
    
    
    .nav-links li a {
      text-decoration: none;
      color: #1a1a1a;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    
.nav-links a:hover {
  color: #250047; /* Blue on hover - you can change this */
  transition: color 0.3s ease;
}

/* Active link styling */
.nav-links a.active {
  color: #250047; /* Orange for active link - customize */
  font-weight: bold;
}
  
  /* Menu toggle hidden by default */
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
  }
  
  /* Responsive styles for mobile */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      left: 0;
      background: white;
      padding: 10px 16px;
      border-radius: 6px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 100;
      width: 100%;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  
  
  /* hero2-content Section */
  .hero-content {
    background: url('078f60a15f0e1c89c93a015fbac0c5cf.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: #fff;
    position: relative;
  }
  
  .hero-content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Just enough to darken background */
    z-index: 1;
  }
  
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 1rem;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    line-height: 1.6;
  }
  
  .hero-btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .hero-btn:hover {
    background-color: #e68000;
    transform: scale(1.03);
  }
  .hero2-content .btn {
  display: inline-block;
  margin-top: 40px;   /* adds more spacing from text */
  padding: 16px 36px; /* makes button bigger */
  font-size: 18px;    /* larger text for visibility */
  font-weight: 700;   /* bolder text */
  background: #1a1d1f; /* strong modern blue */
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15); /* subtle shadow for visibility */
}

.hero2-content .btn:hover {
  background: #023e8a; /* darker shade on hover */
  transform: translateY(-3px); /* slight lift */
  box-shadow: 0px 6px 16px rgba(0,0,0,0.2);
}

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 2.2rem;
    }
  
    .hero-text p {
      font-size: 1rem;
    }
  
    .hero-btn {
      font-size: 0.95rem;
      padding: 0.75rem 1.5rem;
    }
  }
   
  /* Main layout */
.reseller {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* align top edges */
    justify-content: center;
    padding: 60px 20px;
    background-color: #f7f9fc;
    gap: 40px;
  }
  
  /* LEFT IMAGE: Taller & fixed width */
  .reseller img {
    width: 300px;
    height: 100%; /* take full height of content */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    align-items: center;
  }
  
  /* RIGHT CONTENT BOX */
  .reseller-content{
    font-family: 'Open Sans', sans-serif; /* base font */
    max-width: 400px;
    flex: 1;
    display: flex;
    flex-direction: column;
    animation: fadeInRight 1s ease-in-out both;
  }
  
  .reseller h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.6;
    text-align: left;
  }
  
  .reseller p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
    text-align:  left;
  }
  /* Learn More button inside content */
  .btn {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #222;
  }
  
  /* Animated list */
  .info-list {
    list-style: none; /* removes default bullet points */
    padding: 0;
    margin: 0;
  }
  
  .info-list li {
    display: flex;
    align-items: left;
    align-items: flex-start; /* this is the fix */
    margin-bottom: 10px; /* equal spacing between items */
    font-size: 0.98rem;
    color: #333;
    font-style: italic;
    text-align: left;
  }
  
 
  
  /* Delay animation for each list item */
  .info-list li:nth-child(1) { animation-delay: 0.3s; }
  .info-list li:nth-child(2) { animation-delay: 0.6s; }
  .info-list li:nth-child(3) { animation-delay: 0.9s; }
  
  /* Animations */
  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .info-section {
      flex-direction: column;
      text-align: center;
    }
  
    .info-image img {
      width: 100%;
      max-width: 300px;
    }
  
    .reseller {
      max-width: 100%;
    }
  }
  
  
  
  /* Content Sections */
  section {
    padding: 2rem 1rem;
  }
  
  section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #004080;
  }
  
  .features ul,
  .reseller ul {
    list-style: disc inside;
    margin-top: 1rem;
    padding-left: 1rem;
  }
  
  .how-to ol {
    list-style: decimal inside;
    padding-left: 1rem;
    margin-top: 1rem;
  }
  
  .faq-section {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #004080;
  }
  
  .faq-item {
    max-width: 700px;
    margin: 0 auto 1rem auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #004080;
    transition: background-color 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: #eef2ff;
  }
  
  .faq-answer {
    display: none;
    padding: 1rem;
    text-align: left;
    font-size: 1rem;
    color: #333;
    border-top: 1px solid #ddd;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .faq-item.active .arrow {
    transform: rotate(180deg);
  }
  
  .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  /* Animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    padding: 1rem 0;
  }
  
  .faq-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .faq-card:hover {
    transform: translateY(-5px);
  }
  
  .faq-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    object-fit: contain;
  }
  
  .faq-card p {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
  }
  
  .faq-buy-button-wrapper {
    text-align: center;
    margin-top: -30px; /* Moves the button upwards */
    position: relative;
    z-index: 1;
  }
  
  
  .faq-buy-btn {
    display: inline-block;
    padding: 0.75rem 1.6rem;
    background-color: #0056d2;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .faq-buy-btn:hover {
    background-color: #003fa1;
  }
  @media (min-width: 768px) {
    .faq-buy-button-wrapper {
      margin-top: -30px;
    }
  }
  
  
  .footer {
    background-color: #0a0a23;
    color: #f0f0f0;
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-section h3, .footer-section h2 {
    color: #4aa3df;
    margin-bottom: 10px;
  }
  
  .footer-section p{
    color: #dcdcdc;
    font-size: 0.95rem;
  }
  .footer-section a {
    color: #dcdcdc;
    font-size: 0.95rem;
    text-decoration: none; /* removes underline */
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #4aa3df;
    text-decoration: none; /* make sure it's not underlined on hover too */
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
  }
  /* Back to Top Button Styles */
#backToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 99;
    background-color: #004080;
    border: none;
    outline: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s ease-in-out;
    height: 50px;
    width: 50px;
  
    /* These are the most important lines */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #backToTop img {
    height: 24px;
    width: 24px;
  }
  
  #backToTop:hover {
    background-color: #003060;
  }
  
  @media (max-width: 480px) {
    #backToTop {
      bottom: 20px;
      right: 15px;
      height: 45px;
      width: 45px;
      padding: 10px;
    }
  
    #backToTop img {
      height: 20px;
      width: 20px;
    }
  }
  
  