/* Reset default margins, paddings, and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: #ccc; /* Light text color for dark mode */
    background-color: #121212; /* Dark background color */
    line-height: 1.6;
    /* Add padding-top to account for fixed header height */
    padding-top: 80px;
  }
  
  /* Navigation Bar Styles */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #1f1f1f; /* Darker background for header */
    color: #fff;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #f0a500; /* Accent hover color */
  }
  
  /* Language Switcher */
  .language-switcher select {
    padding: 0.25rem;
    border-radius: 4px;
    border: none;
    background-color: #333; /* Dark background for select */
    color: #fff;
  }
  
  /* Hamburger Menu for Mobile */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .nav-toggle .hamburger {
    width: 25px;
    height: 3px;
    background: #fff;
    position: relative;
  }
  
  .nav-toggle .hamburger::before,
  .nav-toggle .hamburger::after {
    content: "";
    width: 25px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: transform 0.3s;
  }
  
  .nav-toggle .hamburger::before {
    top: -8px;
  }
  
  .nav-toggle .hamburger::after {
    top: 8px;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    color: #ccc; /* Light text color for dark mode */
    text-align: center;
    padding: 120px 20px;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5; /* Adjust opacity as needed */
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
    margin-bottom: 2rem;
  }
  
  .btn-primary {
    background: #f0a500; /* Accent button color */
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  .btn-primary:hover {
    background: #cf8500;
  }
  
  /* Section Layout */
  .section {
    padding: 80px 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  
  /* Cards Layout */
  .service-cards,
  .project-cards,
  .blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .card {
    background: #1f1f1f; /* Dark background for cards */
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .card h3 {
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
  }
  
  .card p {
    font-size: 0.95rem;
    color: #ccc; /* Light text color for dark mode */
  }
  
  /* Contact Form Styles */
  #contact-form {
    max-width: 600px;
    margin: auto;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  /* Footer */
  .footer {
    background: #1f1f1f; /* Dark background for footer */
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      text-align: center;
      background: #1f1f1f; /* Dark background for mobile nav */
    }
    
    .nav-links li {
      margin: 1rem 0;
    }
    
    .nav-toggle {
      display: block;
    }
  }