* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: url('atlantacity.jpg') no-repeat center center fixed; /* Background image */
  background-size: cover; /* Cover the entire body */
  color: #333;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: #602f6b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }
  
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 0;
    color: aliceblue;
  }
  
  .logo-image {
    width: 60px;
    height: auto;
    margin-right: 8px;
  }
  
  .navbar a {
    font-size: 18px;
    color: aliceblue;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
    position: relative;
  }
  
  .navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: aliceblue;
    transition: 0.3s;
  }
  
  .navbar a:hover::before {
    width: 100%;
  }

.services-section {
   
  text-align: center;
  padding: 70px 0; /* Padding for the section */
  background-color: rgba(49, 1, 48, 0.7); /* Optional background for contrast */
  margin-top: 80px; /* Add margin to push the section below the fixed header */
}

h1 {
  color: white;
  margin-bottom: 40px;
}

.services-container {

  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.service-box {
  width: 30%;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent box */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.service-box:hover {
  transform: translateY(-10px);
  
}

.service-box h2 {
  color: #4d2157;
  font-size: 24px;
  margin-bottom: 10px;
}

.service-box-content {
  background-color: rgba(96, 47, 107, 0.8); /* Semi-transparent background for content */
  color: white;
  padding: 20px;
  border-radius: 8px;
}

.service-link {
  text-decoration: none;
  color: inherit;
}
