* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Main Container */
.background-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background Image with 20% Opacity */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('images/background.png'); /* Change path as needed */
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 1;
}

/* Contact Card */
.contact-card {
  position: relative;
  z-index: 2;
  background-color: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
  text-align: left;
  color: #333;
}

.contact-card h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-card p {
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .contact-card {
    padding: 20px;
  }
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(54, 53, 53);
  height: 50px;
  color: white;
  text-align: center;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa;
  padding: 5px 30px;
  color: rgb(78, 78, 78);
  position: relative;
}

.logo img {
  max-width: 100%;
  height: auto;
  width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: rgb(7, 7, 7);
  font-size: 24px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: gray !important;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #0a0a0a;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .logo img {
    width: 50px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0a0a0a;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 150px;
    padding: 10px 0;
    border-radius: 8px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    color: white;
    padding: 10px;
    display: block;
  }

  .hamburger {
    display: block;
  }
}
