/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
  }
  
  h1, h2 {
    text-align: center;
    color: #004aad;
  }
  
  /* Hero Section */
  #hero {
    height: 100vh;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
  }
  
  .hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f5f5f5;
    animation: fadeInDown 1s ease-in-out;
  }
  
  .hero-overlay p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    color: #f0f0f0;
    animation: fadeInUp 1.5s ease-in-out;
  }
  
  .hero-nav {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-nav a {
    text-decoration: none;
    color: #ffd700;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .hero-nav a:hover {
    background-color: #ffd700;
    color: #004aad;
  }
  
  /* About Section */
  #about {
    padding: 3rem 1rem;
    background-color: #f0f8ff;
  }
  
  #about .content {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  
  #about img {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
  }
  
  #about div {
    flex: 2;
  }
  
  /* Portfolio Section */
  #portfolio {
    padding: 3rem 1rem;
  }
  
  #portfolio h3 {
    text-align: center;
    margin-top: 2rem;
    color: #333;
  }
  
  .portfolio-category {
    margin-bottom: 2rem;
  }
  
  .portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .portfolio-gallery img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .portfolio-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Contact Section */
  #contact {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #fff;
  }
  
  #contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  #contact input, #contact textarea, #contact button {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  #contact button {
    background-color: #004aad;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #contact button:hover {
    background-color: #003580;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #004aad;
    color: #fff;
  }
  
  /* Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Smooth Scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    #about .content {
      flex-direction: column;
    }
  }
  