/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global styles */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    background-color: #f8f8f8;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header */
  header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .logo {
    max-width: 100%;
    height: auto;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    align-items: center; /* Add this line to vertically align the logo and navigation */
    justify-content: flex-end;
    padding: 5px 0;
  }
  
  nav ul li {
    margin-right: 60px;
  }

  nav ul li:first-child {
    margin-right: auto; /* Push the logo to the left */
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }

  nav ul li a.square-button {
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #333;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  nav ul li a.square-button:hover {
    background-color: #333;
    color: #fff;
  }
  
  /* Hero Section */
  #hero {
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 200px 0;
    text-align: center;
  }
  
  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #555;
  }
  
  /* Services Section */
  #services {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .services-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .service {
    width: 300px;
    margin: 20px;
    padding: 20px;
    border-radius: 4px;
    background-color: #f5f5f5;
    text-align: center;
  }
  
  .service img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .service h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .service p {
    font-size: 16px;
  }
  
  /* About Section */
  #about {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .about-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .about-content p {
    margin-bottom: 30px;
  }
  
  /* Portfolio Section */
  #portfolio {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
  }
  
  .portfolio-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .portfolio-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .gallery-item {
    width: 300px;
    margin: 20px;
    position: relative;
    overflow: hidden;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .item-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;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-item:hover .item-overlay {
    opacity: 1;
  }
  
  .item-overlay h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .item-overlay p {
    color: #fff;
    font-size: 16px;
  }
  
  /* Contact Section */
  #contact {
    padding: 60px 0;
    background-color: #f8f8f8;
  }
  
  .contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .contact-content input,
  .contact-content textarea {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  .contact-content button {
    padding: 10px 30px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-content button:hover {
    background-color: #555;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .contact-info p {
    margin-bottom: 10px;
  }
  
  /* Footer Section */
  footer {
    background-color: #333;
    padding: 20px 0;
    color: #fff;
    text-align: center;
  }
  
  .footer-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .footer-content ul li {
    display: inline-block;
    margin-right: 10px;
  }
  
  .footer-content ul li a {
    text-decoration: none;
    color: #fff;
  }
  
  .social-media-links img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 10px;
  }
  
  