* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

.navbar {
    position: fixed;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  
  .navbar a {
    color: white;
    margin-left: 1.2rem;
    text-decoration: none;
    font-weight: 500;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  

nav ul li a.active {
    color: #333;
}

.hero {
    color: #333;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-family: 'Poppins';
}

.hero p{
    font-size: 20px;
}


#map-section {
    padding: 50px 0;
}

#map-container iframe {
    border-radius: 8px;
}

#contact-info {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background-color: #333;
}

.info-card {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.info-card i {
    font-size: 3em;
    color: #ffbb00;
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-links{
  background: #8a7c7c;
  padding-bottom: 1rem;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-links ul li{
  text-decoration: none;
}

.footer-links a{
    color: blue;
}

.footer-links a:hover {
    color: #ffbb00;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.alpha{
    text-decoration: none;
    background: aqua;
    padding: 5px 12px;
    border-radius: 10px;
}

.cont{
    background: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
}

.contact-container {
  width: 100%;
  max-width: 450px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #ffbb00;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #444;
}

.form-group i {
  margin-right: 8px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border 0.3s;
  font-size: 16px;
}

input:focus, textarea:focus {
  border-color: #25d366;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.send-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.send-btn i {
  margin-right: 8px;
}

.send-btn:hover {
  background-color: #1da851;
}

@media (max-width: 480px) {
  .contact-form h2 {
    font-size: 20px;
  }

  input, textarea {
    font-size: 14px;
  }

  .send-btn {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
    #contact-info {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
    #nav-links {
      display: none;
      flex-direction: column;
      background: #000;
      position: absolute;
      top: 100%;
      right: 0;
      width: 200px;
      padding: 1rem;
    }
    #nav-links.show {
      display: flex;
    }
  }