/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #121212;
    color: #e0e0e0;
    font-size: 16px;
    position: relative; /* Needed for stacking contexts */
  }
  
  /* Fixed Background Container */
  .bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #1a0f2d, #1b1030, #9a2d7d, #1b1030);
    background-size: 400% 400%;
    animation: subtleGradient 60s ease-in-out infinite;
    overflow: hidden;
    z-index: -1;
  }
  
  .bg-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    animation: nightOverlay 120s ease-in-out infinite;
  }
  
  /* Gradient Animation */
  @keyframes subtleGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* Night Overlay Animation */
  @keyframes nightOverlay {
    0%   { opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.7; }
    100% { opacity: 0; }
  }
  
  /* Navbar Styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent; /* Transparent so background shows through */
    padding: 10px 20px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .logo {
    display: flex; /* Align items inline */
    align-items: center; /* Vertically center the items */
  }
  
  .logo h1 {
    color: #9a2d7d;
    font-size: 1.8rem;
    margin-left: 10px; /* Optional, for spacing between logo image and text */
  }
  
  .logo img {
    height: 40px; /* Adjust logo size */
    width: auto;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 2px;
  }
  
  /* Navigation Links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 5px 10px;
    transition: color 0.3s, transform 0.3s;
  }
  
  .nav-links li a:hover {
    color: #9a2d7d;
    transform: scale(1.1);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    /* No separate background here */
  }
  
  .hero-content h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 2px;
  }
  
  .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
  
  /* CTA Button */
  .cta-btn {
    background-color: #9a2d7d;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration: none;
  }
  
  .cta-btn:hover {
    background-color: #7d1f5d;
  }
  
  /* Services Section */
  .services {
    padding: 60px 20px;
    text-align: center;
    background: transparent; /* Let the continuous background show */
  }
  
  .services h2 {
    font-size: 2.8rem;
    color: #9a2d7d;
    margin-bottom: 40px;
  }
  
  /* Service Cards */
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .card {
    background-color: #333;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }
  
  .card h3 {
    font-size: 1.8rem;
    color: #9a2d7d;
    margin-bottom: 15px;
  }
  
  .card p {
    font-size: 1.1rem;
    color: #e0e0e0;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* Footer */
  .footer {
    padding: 20px;
    text-align: center;
    background: transparent; /* Transparent to let the background continue */
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hero-content h2 {
      font-size: 2.5rem;
    }
    
    .cta-btn {
      font-size: 16px;
    }
    
    .services h2 {
      font-size: 2rem;
    }
    
    .card {
      padding: 20px;
    }
    
    .nav-links {
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: #121212;
      flex-direction: column;
      width: 200px;
      padding: 10px;
      display: none;
      border-radius: 5px;
    }
    
    .nav-links.active {
      display: flex;
    }
    
    .hamburger {
      display: flex;
    }
  }
  