In/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Navigation Bar */
  .nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem; /* Adjust to your preference */
    color: #fff;       /* Same color as your navbar text */
  }
  
  /* Hamburger Icon Color */
  .nav-toggle i {
    color: #fff; /* White color for the hamburger icon */
    font-size: 2rem; /* Adjust size as needed */
    transition: color 0.3s ease;
  }
  
  /* Change color on hover */
  .nav-toggle i:hover {
    color: #DCFC35; /* Color when hovered (for example, yellow) */
  }
  
  /* Default nav-links as a row (desktop) */
  .nav-links {
    display: flex;
    gap: 20px;
  }

  /* Mobile Navigation */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block; /* Show hamburger on smaller screens */
      cursor: pointer;
    }
    .nav-links {
      display: none;  /* Hide links by default on mobile */
      position: absolute;
      top: 60px;      /* Slightly below the navbar height */
      right: 0;
      background: rgba(0, 0, 0, 0.8);
      flex-direction: column;
      padding: 20px;
      gap: 10px;
      width: 200px;   /* Adjust to your preference */
    }
    .nav-links.active {
      display: flex;  /* Show links when .active is toggled */
    }
  }
  
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    z-index: 1000;
  }
  
  
  /* Logo container */
  .logo {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    display: flex;             /* Use flexbox to center the content */
    align-items: center;       /* Vertically center the image */
    justify-content: center;   /* Horizontally center the image */
  }
  
  /* Logo image styling */
  .logo img {
    max-height: 70px;          /* Set a max height for the logo */
    width: auto;               /* Maintain the aspect ratio */
    height: auto;
  }
  
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #DCFC35;
  }
  
  /* Mobile View - Initially Hide the Menu */
  @media (max-width: 768px) {
    .nav-links {
      display: none;  /* Hide the menu by default */
      flex-direction: column;  /* Stack the links vertically on mobile */
      gap: 10px;
      background: #000;  /* Make sure the background color matches */
      width: 100%;
      padding: 10px;
      position: absolute;  /* Position the menu over the page */
      top: 60px;  /* Adjust to place the menu below the navbar */
      left: 0;
    }
  
    /* Show the menu when the 'active' class is added */
    .nav-links.active {
      display: flex;
    }
  }
  @media (max-width: 768px) {
    .logo img {
      max-height: 50px;  /* Smaller logo for mobile devices */
    }
  }
  
  
/* Footer Styling */
.footer {
    background: #000000; /* Dark background */
    color: #fff;
    padding: 60px 20px 30px;
    font-size: 1.2rem; /* Larger text for readability */
  }
  
  .footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Logo and About Section */
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .footer-logo img {
    width: 250px;
    height: 100px;
  }
  
  .footer-about h3 {
    font-size: 2rem;
    color: #ffffff; /* Accent color */
    margin: 0;
  }
  
  .footer-about p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    margin-top: 10px;
  }
  
  /* Section Headings */
  .footer-reach h4,
  .footer-links h4,
  .footer-payment h4 {
    font-size: 1.8rem;
    color: #fbfbfb; /* Accent color */
    margin-bottom: 20px;
  }
  
  /* Contact Info Styling */
  .footer-reach ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-reach ul li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
  }
  
  .footer-reach ul li i {
    color: #ffffff;
    font-size: 1.5rem;
  }
  
  .footer-reach ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .footer-reach ul li a:hover {
    color: #DCFC35;
  }
  
  /* Quick Links Styling */
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: #DCFC35;
  }
  
  /* Payment Methods */
  .footer-payment .payment-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
  }
  
  .footer-payment .payment-icons img {
    width: 60px;
    height: auto;
  }
  
  .footer-payment p {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  /* Footer Bottom Section */
  .footer-bottom {
    margin-top: 30px;
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 1rem;
    color: #ccc;
  }
  
  .footer-bottom-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
  }
  
  .footer-bottom-links li a {
    color: #DCFC35;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .footer-bottom-links li a:hover {
    color: #fff;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr; /* Single column */
      text-align: center;
    }
  
    .footer-payment .payment-icons {
      justify-content: center;
    }
  
    .footer-logo img {
      width: 250px;
      height: 100px;
    }
  
    .footer-about h3 {
      font-size: 1.6rem;
    }
  
    .footer-about p {
      font-size: 1.1rem;
    }
  
    .footer-reach ul li,
    .footer-links ul li a {
      font-size: 1.1rem;
    }
  
    .footer-payment .payment-icons img {
      width: 50px;
    }
  
    .footer-bottom-links li a {
      font-size: 0.9rem;
    }
  }
  /* ============================
   Footer Adjustments (Optional)
============================= */
/* If needed, add any Contact page specific footer styles here */

/* ============================
   Responsive Design for Contact Section
============================= */
@media (max-width: 768px) {
    .contact-info {
      flex-direction: column;
      align-items: center;
    }
  
    .support-ticket-boxes {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
  
    .support-box h3 {
      font-size: 1.2rem;
    }
  
    .support-box p {
      font-size: 0.95rem;
    }
  
    .ticket-button {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .contact-container h1 {
      font-size: 2.5rem;
    }
  
    .contact-container p {
      font-size: 1rem;
    }
  
    .support-box h3 {
      font-size: 1.1rem;
    }
  
    .support-box p {
      font-size: 0.9rem;
    }
  
    .ticket-button {
      padding: 6px 12px;
      font-size: 0.8rem;
    }
  }
  .footer-payment {
    padding: 20px;
    text-align: center;
    background-color: #000000; /* Ensure this matches your overall footer background */
  }
  
  .footer-payment h4 {
    font-size: 1.5rem;
    color: #DCFC35;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-payment .payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between icons */
    flex-wrap: wrap; /* Allow icons to wrap on smaller screens */
    margin-bottom: 15px;
  }
  
  .footer-payment .payment-icons i {
    font-size: 2.5rem; /* Adjust size as needed */
    color: #DCFC35; /* Icon color matching your accent */
    transition: transform 0.3s, color 0.3s;
  }
  
  .footer-payment .payment-icons i:hover {
    transform: scale(1.1);
    color: #fff; /* Change color on hover for interactivity */
  }
  
  /* Specific Icon Colors */
  .footer-payment .payment-icons .fa-cc-visa {
    color: #1A1F71; /* Visa Blue */
  }
  
  .footer-payment .payment-icons .fa-cc-mastercard {
    color: #EB001B; /* MasterCard Red */
  }
  
  .footer-payment .payment-icons .fa-cc-amex {
    color: #2E77BB; /* American Express Blue */
  }
  
  .footer-payment .payment-icons .fa-bitcoin {
    color: #f7931a; /* Bitcoin Orange */
  }
  
  .footer-payment .payment-icons .fa-paypal {
    color: #003087; /* PayPal Blue */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-payment .payment-icons i {
      font-size: 2rem;
      margin: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .footer-payment .payment-icons i {
      font-size: 1.8rem;
      margin: 8px;
    }
  }  

/* Reseller Page */
.reseller-hero {
    background: linear-gradient(135deg, #23242a 0%, #1E2028 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .reseller-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease forwards;
  }
  
  .reseller-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #DCFC35; /* Accent color */
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    margin-top: 80px;
  }
  
  .reseller-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
  }
  
  .reseller-cta-button {
    background-color: #DCFC35;
    color: #1E2028;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
  }
  
  .reseller-cta-button i {
    margin-right: 8px;
  }
  
  .reseller-cta-button:hover {
    background-color: #fff;
    transform: translateY(-3px);
  }
  
  /* Simple fade-in animation */
  @keyframes fadeInUp {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* PROGRAM OVERVIEW */
  .program-overview-section {
    background-color: #2a2d3a;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .program-overview-section .reseller-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .program-overview-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #DCFC35;
    font-family: 'Montserrat', sans-serif;
  }
  
  .program-overview-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
  }
  
  .overview-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .overview-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .overview-list li i {
    color: #DCFC35;
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  /* HOW IT WORKS */
  .reseller-howitworks-section {
    background-color: #1E2028;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .reseller-howitworks-section .reseller-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .reseller-howitworks-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #DCFC35;
    font-family: 'Montserrat', sans-serif;
  }
  
  .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .step {
    flex: 1 1 250px;
    background-color: #2a2d3a;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  .step i {
    font-size: 2rem;
    color: #DCFC35;
    margin-bottom: 10px;
  }
  
  .step h3 {
    font-size: 1.5rem;
    color: #DCFC35;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .step p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
    font-family: 'Roboto', sans-serif;
  }
  
  /* PLANS SECTION with SWITCHER */
  .reseller-plans-section {
    background-color: #2a2d3a;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .reseller-plans-section .reseller-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .reseller-plans-section h2 {
    font-size: 2.5rem;
    color: #DCFC35;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
  }
  
  .reseller-plans-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Switcher Buttons */
  .plan-switcher {
    display: inline-flex;
    gap: 15px;
    margin-bottom: 50px;
  }
  
  .switcher-btn {
    background-color: #1E2028;
    color: #ccc;
    border: 2px solid #DCFC35;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    font-family: 'Montserrat', sans-serif;
  }
  
  .switcher-btn:hover {
    background-color: #DCFC35;
    color: #1E2028;
    transform: translateY(-3px);
  }
  
  .switcher-btn.active {
    background-color: #DCFC35;
    color: #1E2028;
  }
  
  /* Plan Cards */
  .plans-wrapper {
    position: relative;
  }
  
  .plans-grid {
    display: none; /* hidden by default; shown by JS */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  
  .plans-grid.show {
    display: grid;
  }
  
  .plan-card {
    background-color: #1E2028;
    padding: 30px 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  .plan-card h3 {
    font-size: 1.4rem;
    color: #DCFC35;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .price {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .price span {
    font-size: 1rem;
    color: #ccc;
    margin-left: 5px;
  }
  
  .plan-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
  }
  
  .plan-card li {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .plan-card li i {
    color: #DCFC35;
    margin-right: 8px;
  }
  
  .plan-button {
    background-color: #DCFC35;
    color: #1E2028;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
  }
  
  .plan-button:hover {
    background-color: #fff;
    transform: translateY(-3px);
  }
  
  /* SIGNUP CTA */
  .reseller-signup-section {
    background-color: #1E2028;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .reseller-signup-section .reseller-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .reseller-signup-section h2 {
    font-size: 2.5rem;
    color: #DCFC35;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
  }
  
  .reseller-signup-section p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
  }
  
  .signup-button {
    display: inline-flex;
    align-items: center;
    background-color: #DCFC35;
    color: #1E2028;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    font-family: 'Montserrat', sans-serif;
  }
  
  .signup-button i {
    margin-right: 8px;
  }
  
  .signup-button:hover {
    background-color: #fff;
    transform: translateY(-3px);
  }
  
  /* RESPONSIVE DESIGN */
  @media (max-width: 768px) {
    .steps {
      flex-direction: column;
      align-items: center;
    }
  
    .plans-grid {
      grid-template-columns: 1fr;
    }
  
    .plan-card {
      max-width: 400px;
    }
  }
  
  @media (max-width: 480px) {
    .reseller-hero-content h1 {
      font-size: 2rem;
    }
    .reseller-hero-content p {
      font-size: 1rem;
    }
    .reseller-cta-button {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  
    .program-overview-section h2,
    .reseller-howitworks-section h2,
    .reseller-plans-section h2,
    .reseller-signup-section h2 {
      font-size: 2rem;
    }
  
    .program-overview-section p,
    .step p,
    .plan-card li,
    .reseller-signup-section p {
      font-size: 0.95rem;
    }
  
    .plan-button {
      font-size: 0.9rem;
    }
  }
  /* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #1E2028; /* Dark background to match other sections */
    color: #fff;
  }
  
  .about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-container h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #DCFC35; /* Accent color */
    margin-top: 80px;
  }
  
  .about-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
  }
  
  .about-container p:last-child {
    margin-bottom: 0;
    font-weight: bold;
  }
  
  /* Mission and Vision */
  .mission-vision {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 40px 0;
  }
  
  .mission, .vision {
    flex: 1 1 45%;
    margin: 20px;
    text-align: left;
  }
  
  .mission h2, .vision h2 {
    font-size: 2rem;
    color: #DCFC35;
    margin-bottom: 15px;
  }
  
  .mission p, .vision p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.5;
  }
  
  /* Team Members */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .team-member {
    background-color: #323543;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .team-member h3 {
    font-size: 1.5rem;
    color: #DCFC35;
    margin-bottom: 5px;
  }
  
  .team-member p {
    font-size: 1rem;
    color: #ccc;
  }
  
  /* Timeline Section */
  .timeline {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    position: relative;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #DCFC35;
    transform: translateX(-50%);
  }
  
  .timeline li {
    position: relative;
    margin: 20px 0;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
  }
  
  .timeline li:nth-child(odd) {
    left: 0;
    text-align: right;
  }
  
  .timeline li:nth-child(even) {
    left: 50%;
    text-align: left;
  }
  
  .timeline li::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: #1E2028;
    border: 4px solid #DCFC35;
    border-radius: 50%;
    z-index: 1;
  }
  
  .timeline li:nth-child(odd)::before {
    right: -10px;
  }
  
  .timeline li:nth-child(even)::before {
    left: -10px;
  }
  
  .timeline li p {
    background-color: #323543;
    padding: 15px;
    border-radius: 10px;
    color: #ccc;
    position: relative;
  }
  
  /* Responsive Adjustments for Timeline */
  @media (max-width: 992px) {
    .mission-vision {
      flex-direction: column;
      align-items: center;
    }
  
    .mission, .vision {
      flex: 1 1 100%;
      margin: 10px 0;
    }
  
    .timeline li {
      width: 50%;
    }
  }
  
  @media (max-width: 768px) {
    .timeline li {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
      text-align: left;
    }
  
    .timeline li:nth-child(even) {
      left: 0%;
    }
  
    .timeline::before {
      left: 20px;
    }
  
    .timeline li::before {
      left: -30px;
    }
  
    .mission-vision {
      flex-direction: column;
      align-items: center;
    }
  }
  
  /* Visible Class for Timeline Animation */
  .timeline li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .timeline li.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* styles.css */
  
  /* Existing styles... */
  
  /* App Section */
  .app-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1E2028 0%, #2A2F40 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .app-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .app-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #DCFC35; /* Accent color */
    animation: fadeInDown 1s ease-out forwards;
    margin-top: 80px;
  }
  
  .app-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Features */
  .app-features {
    margin-bottom: 60px;
  }
  
  .app-features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #DCFC35;
    position: relative;
    display: inline-block;
  }
  
  .app-features h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #DCFC35;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  
  .feature-item {
    background-color: rgba(50, 53, 67, 0.9);
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(220,252,53,0.1) 25%, transparent 25%, transparent 50%, rgba(220,252,53,0.1) 50%, rgba(220,252,53,0.1) 75%, transparent 75%, transparent);
    background-size: 50px 50px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .feature-item:hover::before {
    opacity: 1;
  }
  
  .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  }
  
  .feature-item i {
    font-size: 3rem;
    color: #DCFC35;
    margin-bottom: 20px;
    transition: transform 0.3s;
  }
  
  .feature-item:hover i {
    transform: rotate(360deg);
  }
  
  .feature-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #DCFC35;
  }
  
  .feature-item p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
  }
  
  /* App Screenshots */
  .app-screenshots {
    margin-bottom: 60px;
  }
  
  .app-screenshots h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #DCFC35;
    position: relative;
    display: inline-block;
  }
  
  .app-screenshots h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #DCFC35;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
  }
  
  /* Carousel for Screenshots */
  .screenshots-carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 20px;
  }
  
  .carousel-item {
    min-width: 300px;
    scroll-snap-align: center;
    transition: transform 0.3s;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  
  .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .carousel-item:hover {
    transform: scale(1.05);
  }
  
  /* Download Section */
  .download-section {
    background: rgba(50, 53, 67, 0.9);
    padding: 60px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  
  .download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #DCFC35;
    position: relative;
    display: inline-block;
  }
  
  .download-section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #DCFC35;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
  }
  
  .download-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .download-btn {
    display: flex;
    align-items: center;
    background-color: #DCFC35;
    color: #1E2028;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .download-btn i {
    margin-right: 10px;
    font-size: 1.5rem;
  }
  
  .download-btn:hover {
    background-color: #c9d62c;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  }
  
  /* Specific Styles for Each Download Button */
  .download-btn.ios {
    background-color: #A3AAAE;
    color: #fff;
  }
  
  .download-btn.ios:hover {
    background-color: #8a8d90;
  }
  
  .download-btn.android {
    background-color: #3DDC84;
    color: #fff;
  }
  
  .download-btn.android:hover {
    background-color: #32c075;
  }
  
  .download-btn.windows {
    background-color: #00A4EF;
    color: #fff;
  }
  
  .download-btn.windows:hover {
    background-color: #0087D1;
  }
  
  .download-btn.firestick {
    background-color: #FF9900;
    color: #fff;
  }
  
  .download-btn.firestick:hover {
    background-color: #e68a00;
  }
  
  .download-btn.downloader {
    background-color: #FF5722;
    color: #fff;
  }
  
  .download-btn.downloader:hover {
    background-color: #e64a19;
  }
  
  /* Responsive Adjustments for App Section */
  @media (max-width: 992px) {
    .features-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
  
    .download-buttons {
      flex-direction: column;
      gap: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .app-section h1 {
      font-size: 2.2rem;
    }
  
    .app-section p {
      font-size: 1rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .screenshots-carousel {
      flex-direction: column;
      align-items: center;
    }
  
    .carousel-item {
      min-width: 80%;
    }
  
    .download-buttons {
      flex-direction: column;
      gap: 15px;
    }
  }
  
  /* Scrollbar Styling for Carousel */
  .screenshots-carousel::-webkit-scrollbar {
    height: 8px;
  }
  
  .screenshots-carousel::-webkit-scrollbar-track {
    background: #2A2F40;
    border-radius: 4px;
  }
  
  .screenshots-carousel::-webkit-scrollbar-thumb {
    background: #DCFC35;
    border-radius: 4px;
  }
 
  /* blog.css */
  
  /* Blog Section */
  .blog-section {
    padding: 80px 20px;
    background-color: #1E2028; /* Consistent dark background */
    color: #fff;
  }
  
  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .blog-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #DCFC35; /* Accent color */
    font-family: 'Montserrat', sans-serif;
    margin-top: 80px;
  }
  
  .blog-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ccc;
    font-family: 'Roboto', sans-serif;
    
  }
  
  /* Blog Grid */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    margin-top: 80px;
  }
  
  /* Individual Blog Post */
  .blog-post {
    background-color: #323543;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  
  .blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  .blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
  }
  
  .blog-post:hover img {
    transform: scale(1.05);
  }
  
  .blog-content {
    padding: 20px;
    text-align: left;
  }
  
  .blog-content h2 {
    font-size: 1.5rem;
    color: #DCFC35;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
  }
  
  .blog-post:hover .blog-content h2 {
    color: #fff;
  }
  
  .blog-date {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    display: block;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Enhance Read More Button */
  .read-more {
    display: inline-flex;
    align-items: center;
    color: #DCFC35;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .read-more:hover {
    color: #fff;
  }
  
  .read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
  }
  
  .read-more:hover i {
    transform: translateX(5px);
  }
  
  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .pagination a {
    color: #DCFC35;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border: 2px solid #DCFC35;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
  }
  
  .pagination a:hover {
    background-color: #DCFC35;
    color: #1E2028;
    transform: scale(1.05);
  }
  
  /* Add Pagination Active State */
  .pagination a.active {
    background-color: #DCFC35;
    color: #1E2028;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .blog-post img {
      height: 180px;
    }
  
    .blog-content h2 {
      font-size: 1.3rem;
    }
  
    .pagination a {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
  }
  
  /* Additional Enhancements */
  
  /* Add subtle animation to blog posts on load */
  .blog-post {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Style for tags/categories if any */
  .blog-content .tags {
    margin-top: 10px;
  }
  
  .blog-content .tags a {
    display: inline-block;
    background-color: #DCFC35;
    color: #1E2028;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .blog-content .tags a:hover {
    background-color: #fff;
    color: #DCFC35;
  }
  
  /* Add shadow to blog-container */
  .blog-container {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: #2a2d3a;
    padding: 40px;
  }
  
  /* Adjust blog-container padding for smaller screens */
  @media (max-width: 768px) {
    .blog-container {
      padding: 30px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .blog-container {
      padding: 20px 10px;
    }
  
    .blog-container h1 {
      font-size: 2.5rem;
    }
  
    .blog-container p {
      font-size: 1rem;
    }
  }
  
  /* ============================
    BLOG POST 1 
  ============================= */
  .blog-post-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    background-color: #2a2d3a; /* Dark background for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .blog-post-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #DCFC35; /* Accent color for the title */
    margin-bottom: 10px;
  }
  
  .blog-post-container .blog-date {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
  }
  
  .blog-post-container img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .blog-post-container .blog-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
  }
  
  .blog-post-container .blog-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #DCFC35;
    margin: 30px 0 15px;
  }
  
  .blog-post-container .blog-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
  }
  
  .blog-post-container .blog-content ul li {
    margin-bottom: 10px;
    color: #ccc;
  }
  
  .blog-post-container .back-to-blog {
    text-align: center;
    margin-top: 40px;
  }
  
  .blog-post-container .back-link {
    color: #DCFC35;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .blog-post-container .back-link:hover {
    color: #fff;
  }
  
  /* ============================
     Responsive Design for Blog Posts
  ============================= */
  @media (max-width: 768px) {
    .blog-post-container {
      margin: 40px 20px;
      padding: 15px;
    }
  
    .blog-post-container h1 {
      font-size: 2rem;
    }
  
    .blog-post-container .blog-content h2 {
      font-size: 1.6rem;
    }
  }
  
  @media (max-width: 480px) {
    .blog-post-container {
      margin: 20px 10px;
      padding: 10px;
    }
  
    .blog-post-container h1 {
      font-size: 1.8rem;
    }
  
    .blog-post-container .blog-content h2 {
      font-size: 1.4rem;
    }
  }
  /* ============================
     Contact us page
  ============================= */
  /* contact.css */
  
  /* ============================
     Contact Section
  ============================= */
  .contact-section {
    padding: 80px 20px;
    background-color: #1E2028;
    color: #fff;
    font-family: 'Roboto', sans-serif;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #DCFC35; /* Accent color */
    font-family: 'Montserrat', sans-serif;
    margin-top: 80px;
  }
  
  .contact-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ccc;
  }
  
  /* Contact Information */
  .contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .contact-item {
    flex: 1 1 250px;
    background-color: #1E2028;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  .contact-item i {
    font-size: 2rem;
    color: #DCFC35;
    margin-bottom: 10px;
  }
  
  .contact-item h3 {
    font-size: 1.5rem;
    color: #DCFC35;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .contact-item p a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-item p a:hover {
    color: #DCFC35;
  }
  
  /* Support Ticket Boxes */
  .support-ticket-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
  }
  
  .support-box {
    background-color: #2a2d3a;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .support-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  .support-box h3 {
    font-size: 1.3rem;
    color: #DCFC35;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .support-box p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
  }
  
  .ticket-button {
    display: inline-flex;
    align-items: center;
    background-color: #DCFC35;
    color: #1E2028;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
  }
  
  .ticket-button i {
    margin-right: 8px;
    transition: transform 0.3s;
  }
  
  .ticket-button:hover {
    background-color: #fff;
    color: #1E2028;
    transform: translateY(-3px);
  }
  
  .ticket-button:hover i {
    transform: translateX(5px);
  }
  
 
  /* ============================
     Affiliate Page Styles
  ============================= */
  
  /* Global font families (already included in main CSS, listed again if needed) */
  /* font-family: 'Montserrat', sans-serif; (headings) */
  /* font-family: 'Roboto', sans-serif; (body) */
  
  /* Affiliate Hero Section */
  .affiliate-hero {
    background-color: #1E2028;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    background-image: url('assets/affiliate-hero-bg.jpg'); /* Optional background image */
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .affiliate-hero::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
  }
  
  .affiliate-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .affiliate-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #DCFC35; /* Accent color */
    font-family: 'Montserrat', sans-serif;
  }
  
  .affiliate-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  .affiliate-cta-button {
    background-color: #DCFC35;
    color: #1E2028;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    font-family: 'Montserrat', sans-serif;
  }
  
  .affiliate-cta-button:hover {
    background-color: #fff;
    transform: translateY(-3px);
  }
  
  /* How It Works Section */
  .how-it-works-section {
    background-color: #2a2d3a;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .how-it-works-section .affiliate-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .how-it-works-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #DCFC35;
    font-family: 'Montserrat', sans-serif;
  }
  
  .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .step {
    flex: 1 1 250px;
    background-color: #1E2028;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  .step i {
    font-size: 2rem;
    color: #DCFC35;
    margin-bottom: 10px;
  }
  
  .step h3 {
    font-size: 1.5rem;
    color: #DCFC35;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .step p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Benefits Section */
  .affiliate-benefits-section {
    background-color: #1E2028;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .affiliate-benefits-section .affiliate-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .affiliate-benefits-section h2 {
    font-size: 2.5rem;
    color: #DCFC35;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
  }
  
  .benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .benefit-item {
    background-color: #2a2d3a;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  .benefit-item i {
    font-size: 2rem;
    color: #DCFC35;
    margin-bottom: 10px;
  }
  
  .benefit-item h3 {
    font-size: 1.3rem;
    color: #DCFC35;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .benefit-item p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Sign Up Section */
  .affiliate-signup-section {
    background-color: #2a2d3a;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .affiliate-signup-section .affiliate-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .affiliate-signup-section h2 {
    font-size: 2.5rem;
    color: #DCFC35;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
  }
  
  .affiliate-signup-section p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
  }
  
  .signup-button {
    display: inline-flex;
    align-items: center;
    background-color: #DCFC35;
    color: #1E2028;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    font-family: 'Montserrat', sans-serif;
  }
  
  .signup-button i {
    margin-right: 8px;
  }
  
  .signup-button:hover {
    background-color: #fff;
    transform: translateY(-3px);
  }
  
  /* ============================
     Responsive Design
  ============================= */
  @media (max-width: 768px) {
    .steps {
      flex-direction: column;
      align-items: center;
    }
  
    .benefits {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .affiliate-hero-content h1 {
      font-size: 2rem;
    }
  
    .how-it-works-section h2,
    .affiliate-benefits-section h2,
    .affiliate-signup-section h2 {
      font-size: 2rem;
    }
  
    .affiliate-hero-content p,
    .step p,
    .benefit-item p,
    .affiliate-signup-section p {
      font-size: 1rem;
    }
  
    .affiliate-cta-button,
    .signup-button {
      padding: 10px 20px;
      font-size: 1rem;
    }
  }
  /* ============================
     Reseller Page Styles
  ============================= */
  
  
  /* ============================
     FAQ Page Styles
  ============================= */
  
  /* Hero Section */
  .faq-hero {
    background-color: #1E2028; /* or use a gradient if desired */
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
  }
  
  .faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-hero-content h1 {
    font-size: 3rem;
    color: #DCFC35;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    margin-top: 80px;
  }
  
  .faq-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
  }
  
  /* FAQ Search Section */
  .faq-search-section {
    background-color: #2a2d3a;
    padding: 40px 20px;
    text-align: center;
  }
  
  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .faq-search-box {
    display: inline-flex;
    align-items: center;
    background-color: #1E2028;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #DCFC35;
  }
  
  .faq-search-box input[type="text"] {
    padding: 10px;
    border: none;
    outline: none;
    color: #fff;
    background-color: transparent;
    width: 250px;
    font-family: 'Roboto', sans-serif;
  }
  
  .faq-search-box input[type="text"]::placeholder {
    color: #ccc;
  }
  
  .faq-search-box button {
    background-color: #DCFC35;
    color: #1E2028;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1.2rem;
  }
  
  .faq-search-box button:hover {
    background-color: #fff;
  }
  
  /* Main FAQ Section */
  .faq-section {
    background-color: #1E2028;
    color: #fff;
    padding: 60px 20px;
  }
  
  .faq-item {
    background-color: #2a2d3a;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 15px 20px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .faq-question span {
    color: #DCFC35;
  }
  
  .faq-question i {
    color: #fff;
    transition: transform 0.3s;
    font-size: 1.2rem;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #2a2d3a;
    padding: 0 20px;
    transition: max-height 0.3s ease;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
  }
  
  /* When FAQ item is open */
  .faq-item.open .faq-answer {
    padding-top: 15px;
    max-height: 200px; /* adjust if you have longer answers */
  }
  
  .faq-item.open .faq-question i {
    transform: rotate(180deg);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .faq-question {
      font-size: 0.9rem;
    }
  
    .faq-search-box input[type="text"] {
      width: 180px;
    }
  }
  
  @media (max-width: 480px) {
    .faq-hero-content h1 {
      font-size: 2.2rem;
    }
  
    .faq-hero-content p {
      font-size: 1rem;
    }
  
    .faq-question {
      padding: 12px 16px;
    }
  
    .faq-answer p {
      font-size: 0.9rem;
    }
  }
  /* ============================
     Privacy Policy Styles
  ============================= */
  
  /* Hero Section */
  .privacy-hero {
    background-color: #1E2028;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
  }
  
  .privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .privacy-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #DCFC35; /* Accent color */
    font-family: 'Montserrat', sans-serif;
  }
  
  .privacy-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Main Privacy Content */
  .privacy-content {
    background-color: #2a2d3a;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Roboto', sans-serif;
  }
  
  .privacy-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .privacy-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #DCFC35;
    font-family: 'Montserrat', sans-serif;
  }
  
  .privacy-container p,
  .privacy-container li {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .privacy-container ul {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 30px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .privacy-hero-content h1 {
      font-size: 2.5rem;
    }
    .privacy-hero-content p {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .privacy-hero-content h1 {
      font-size: 2rem;
    }
    .privacy-hero-content p {
      font-size: 1rem;
    }
    .privacy-container h2 {
      font-size: 1.6rem;
    }
    .privacy-container p,
    .privacy-container li {
      font-size: 0.95rem;
    }
  }
  /* ============================
     DMCA Page Styles
  ============================= */
  
  /* Hero Section */
  .dmca-hero {
    background-color: #1E2028;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
  }
  
  .dmca-hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .dmca-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #DCFC35; /* Accent color */
    font-family: 'Montserrat', sans-serif;
    margin-top: 80px;
  }
  
  .dmca-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Main DMCA Content */
  .dmca-content {
    background-color: #2a2d3a;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Roboto', sans-serif;
  }
  
  .dmca-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .dmca-container h2,
  .dmca-container h3 {
    font-size: 2rem;
    color: #DCFC35;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .dmca-container p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .dmca-container ul {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 30px;
  }
  
  .dmca-container li {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 10px;
  }
  
  .dmca-container ol {
    margin-left: 40px;
    margin-bottom: 30px;
  }
  
  .dmca-container ol li {
    font-size: 1.1rem;
    color: #ccc;
  }
  
  /* Contact Information */
  .dmca-container a {
    color: #DCFC35;
    text-decoration: none;
  }
  
  .dmca-container a:hover {
    text-decoration: underline;
  }
  
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .dmca-hero-content h1 {
      font-size: 2.5rem;
    }
  
    .dmca-hero-content p {
      font-size: 1.1rem;
    }
  
    .dmca-container h2,
    .dmca-container h3 {
      font-size: 1.6rem;
    }
  
    .dmca-container p {
      font-size: 1rem;
    }
  
    .footer-logo img {
      max-width: 150px;
    }
  
    .footer-bottom p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .dmca-hero-content h1 {
      font-size: 2rem;
    }
  
    .dmca-hero-content p {
      font-size: 1rem;
    }
  
    .dmca-container h2,
    .dmca-container h3 {
      font-size: 1.4rem;
    }
  
    .dmca-container p {
      font-size: 0.95rem;
    }
  }
   /* CSS Variables */
:root {
  --primary-color: #DCFC35; /* Accent color from your site */
  --dark-bg: #1E2028;
  --darker-bg: #2A2F40;
  --card-bg: rgba(50, 53, 67, 0.9);
  --card-hover: #44485c;
  --text-light: #fff;
  --text-gray: #ccc;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --border-radius: 15px;
  --transition: all 0.3s ease;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background: var(--dark-bg);
  color: var(--text-gray);
}

/* Installation Section */
.installation-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.installation-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.installation-container h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  margin-top: 80px; /* Space for fixed navbar */
  animation: fadeInDown 1s ease-out forwards;
}

.installation-container p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

/* Installation Grid */
.installation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

/* Install Card */
.install-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.install-card:hover {
  background: var(--card-hover);
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.card-header {
  background: var(--card-bg);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.card-header i {
  font-size: 2rem;
  color: var(--primary-color);
}

.card-header h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
}

.card-body {
  padding: var(--spacing-md);
  text-align: left;
}

.card-body p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-md);
}

.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #000; /* Black text for contrast */
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}

.read-more-btn:hover {
  background: #b4cf2a; /* Slightly darker shade of #DCFC35 for hover */
  transform: scale(1.05);
}

/* Troubleshooting Card */
.troubleshooting-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.troubleshooting-card:hover {
  background: var(--card-hover);
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
  .installation-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .installation-container h1 {
    font-size: 2.2rem;
  }
  .installation-container p {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .card-header h2 {
    font-size: 1.3rem;
  }
  .card-header i {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .installation-grid {
    grid-template-columns: 1fr;
  }
  .read-more-btn {
    width: 100%;
    text-align: center;
  }
}
  