/* ============================
    Header and footer 
  ============================= */

  /* 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;
    }
  }  

/* CSS Variables */
:root {
    --primary-color: #DCFC35; /* Accent color */
    --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);
  }
  
  /* Blog Section */
  .blog-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  .blog-container {
    /* Removed max-width to stretch content across the screen */
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
  }
  
  .blog-container h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    margin-top: 80px; /* Space for fixed navbar */
    animation: fadeInDown 1s ease-out forwards;
  }
  
  .intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
  }
  
  /* Unified Blog Content (No Background Box) */
  .blog-content {
    /* Removed max-width to stretch content across the screen */
    padding: 0 var(--spacing-md); /* Add padding to avoid content touching edges */
  }
  
  .blog-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }
  
  .blog-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
  }
  
  .blog-content ul,
  .blog-content ol {
    margin-left: 20px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
  }
  
  .blog-content li {
    margin-bottom: var(--spacing-sm);
  }
  
  .blog-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
  }
  
  .blog-content a:hover {
    text-decoration: underline;
  }
  
  /* Image Styles */
  .blog-content figure {
    margin: var(--spacing-md) 0;
  }
  
  .blog-content img {
    width: 100%; /* Stretch images to full width */
    max-width: 1080px; /* Cap at 1080px for larger screens */
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto; /* Center the image */
  }
  
  .blog-content figcaption {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: var(--spacing-sm);
  }
  
  /* 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: 1080px) {
    .blog-content img {
      max-width: 100%; /* Ensure images don't exceed viewport width */
    }
  }
  
  @media (max-width: 768px) {
    .blog-container h1 {
      font-size: 2.2rem;
    }
    .intro-text {
      font-size: 1rem;
    }
    .blog-content h2 {
      font-size: 1.6rem;
    }
    .blog-content {
      padding: 0 var(--spacing-sm);
    }
  }
  
  @media (max-width: 480px) {
    .blog-content {
      padding: 0 var(--spacing-sm);
    }
  }
  .blog-container h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    margin-top: 80px; /* Space for fixed navbar */
    animation: fadeInDown 1s ease-out forwards;
    text-align: center; /* Add this line */
  }