/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
  }
  
  /* Navigation Bar */
  header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav .logo h1 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    display: flex;
  }
  
  nav .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav .nav-links li {
    display: inline;
  }
  
  nav .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  /* Hero Section */
  #hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 80px 0;
  }
  
  #hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  #hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    background-color: #3498db;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
  }
  
  .cta-button:hover {
    background-color: #2980b9;
  }
  
  /* Section Styles */
  .section {
    padding: 60px 20px;
  }
  
  .container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    color: black;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* Projects Section */
  .project-cards {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: #fff;
    width: 30%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card h3 {
    font-size: 1.5rem;
    padding: 15px;
    margin-bottom: 10px;
  }
  
  .card p {
    padding: 0 15px 15px;
    font-size: 1rem;
  }
  
  .card a {
    display: inline-block;
    margin: 0 15px 15px;
    color: #3498db;
    font-weight: bold;
  }
  
  /* Contact Section */
  form {
    display: grid;
    gap: 15px;
  }
  
  form input,
  form textarea {
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    background-color: #333;
    color: #fff;
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #3498db;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    nav .nav-links {
      flex-direction: column;
      gap: 10px;
    }
  
    .project-cards {
      flex-direction: column;
    }
  
    .card {
      width: 100%;
    }
  
    #hero h2 {
      font-size: 2.5rem;
    }
  
    #hero p {
      font-size: 1rem;
    }
  }
  