


/* Inline CSS for demo; separate file recommended */
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      background: #f2fdf9;
      color: #333;
    }
   


   .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  width: auto;
}


 

.contact-container {
  max-width: 600px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.contact-container h1 {
  font-size: 2.5rem;
  color: #27ae60;
  margin-bottom: 10px;
}

.contact-container p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

img{
       width: 40%;
   }


vid{width: 45%;}

form input,
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

form button {
  background: #27ae60;
  color: white;
  padding: 14px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #1e8d4c;
}

.contact-details {
  margin-top: 40px;
  text-align: left;
}

.contact-details a {
  color: #27ae60;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}



.footer-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's on top of other content */
}

.footer-popup.show {
  display: flex; /* Show the popup */
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative; /* For positioning the close button */
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.popup-content h3 {
  margin-top: 0;
  color: #333;
}

.popup-content img {
  margin: 10px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.popup-content p {
  color: #555;
  margin-bottom: 15px;
}

.popup-button {
  background-color: #007bff; /* Example button color */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.popup-button:hover {
  background-color: #0056b3;
}
 
  
 
 footer {
      background: #222;
      color: #ccc;
      padding: 40px 20px;
      text-align: center;
    }
    .footer-links a {
      color: #ccc;
      margin: 0 10px;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
     
  

  






