/* Contact Page */
.contact {
    padding: 60px 20px;
    background-color: #f1f1f1;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
  }
 .


  .contact p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
  }
  
  .contact-form button {
    padding: 15px;
    background-color: #ff6600;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #e65c00;
  }
  .map-section {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
  }
  
  .map-section h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.6rem;
  }
  
  .map-container {
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  /* Base nav styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 12px 20px;
}

.logo {
  font-size: 24px;
  color: white;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.extra-contact {
  background-color: #f1f1f1;
  padding: 40px 20px;
  text-align: center;
}

.extra-contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.contact-item .icon {
  font-size: 1.5rem;
}

.contact-item a {
  color: #007bff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Hamburger toggle button */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #444;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 6px;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.map-section {
  padding: 40px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.map-container {
  max-width: 1000px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
