

/* contact.css */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fdfefe;
}

.contact-section {
  max-width: 960px;
  margin: 40px auto;
  padding: 20px;
  color: #2d3436;
}

.contact-section h1 {
  text-align: center;
  font-size: 30px;
  color: #0984e3;
}

.contact-section p {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  color: #636e72;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

form button {
  padding: 12px;
  background: #00b894;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

form button:hover {
  background: #019875;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h3 {
  margin-bottom: 5px;
  color: #6c5ce7;
}

.contact-info a {
  color: #00b894;
  font-weight: bold;
  text-decoration: none;
}

.contact-info iframe {
  margin-top: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
/* Hamburger toggle icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0984e3;
}

/* Header styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  border-bottom: 2px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Navigation styling */
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  min-width: 180px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
  z-index: 999;
  flex-direction: column;
  border-radius: 6px;
  overflow: auto;
  max-height: 300px;
}
.dropdown-content a {
  padding: 10px 15px;
  display: block;
  color: #2d3436;
  white-space: nowrap;
}
.dropdown-content a:hover {
  background-color: #ecf0f1;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive nav for mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 60px;
    right: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: none;
    gap: 10px;
  }

  nav.active {
    display: flex;
  }

  .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    border: 1px solid #ddd;
    margin-top: 5px;
  }
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem 1rem;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 300px;
  padding: 1rem;
}

.footer-column h3 {
  font-size: 1.1rem;
  border-bottom: 3px solid #e74c3c;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #00cec9;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #aaa;
}

