/* Global Styling */

*{
  font-family: 'Poppins', sans-serif;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #09A586, #D4F1F4);
  color: #fff;
}

.container {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

/* Welcome Section */
.welcome-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: rgb(3, 75, 80);
}

.welcome-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

/* Form Section */
.form-section input {
  padding: 0.8rem;
  width: 80%;
  max-width: 400px;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-section button {
  padding: 0.8rem 2rem;
  background-color: rgb(3, 75, 80);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.form-section button:hover {
  background-color: rgb(5, 32, 34);
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .welcome-section h1 {
      font-size: 1.5rem;
  }

  .form-section input {
      width: 90%;
  }

  .form-section button {
      width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .welcome-section h1 {
      font-size: 1.2rem;
  }

  .welcome-section p {
      font-size: 1rem;
  }
}

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.modal-content .icon {
  font-size: 60px;
  color: rgb(3, 75, 80);
  margin-bottom: 20px;
}

.modal-content p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.modal-content #download-btn {
  padding: 0.8rem 2rem;
  background-color: rgb(3, 75, 80);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-content #download-btn:hover {
  background-color: rgb(5, 32, 34);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

/* Media Queries */
@media screen and (max-width: 480px) {
  .modal-content {
      padding: 1rem;
  }
}

#contact-btn {
  background: rgb(3, 75, 80);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  align-items: center;
}

#contact-btn:hover {
  background: rgb(5, 32, 34);
}

.center-it{
  display: flex;
  justify-content: center;
}

.logo-container {
  text-align: center;
  margin-bottom: 20px;
  gap: 7px;
}

.logo-container img {
  width: 60px;
  height: auto;
  border-radius: 1rem;
}

.website-name {
  font-size: 24px;
  color:rgb(3, 75, 80);
  font-weight: bold;
  margin-top: 5px;
  font-family: 'Oswald', sans-serif;
  text-align: left;
}
