* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}




body {
  background-image: url("../images/contact.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Contact Section */
.contact {
  margin-top: 40px;
  font-size: 50px;
  font-weight: bolder;
  font-family: Arial, Helvetica, sans-serif;
  color: whitesmoke;
  text-align: center;
}

/* Contact Form */
.contact-form {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  box-shadow: 0 8px 25px rgba(222, 123, 214, 0.162);
}

.contact-form div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 8px;
  border: 1px solid #d3c4c4;
  border-radius: 15px;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-form button {
  margin-top: 10px;
  padding: 10px;
  border: none;
  background: #976ddb;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  width: 100%;
}

.contact-form button:hover {
  border: 2px solid #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.contact-form button:active {
  transform: scale(0.95);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}




@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    border-radius: 0;
  }

  .nav-links {
    justify-content: center;
    margin-top: 10px;
  }

  .signin {
    margin-top: 10px;
  }

  .contact {
    font-size: 36px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
    width: 100%;
  }

  .quick-links,
  .social-links {
    justify-content: center;
  }

  .copyright {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact {
    font-size: 28px;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    padding: 1.5rem 0;
  }

  .footer-content {
    padding: 0 1rem;
  }

  .quick-links,
  .social-links {
    font-size: 0.9rem;
    gap: 0.3rem;
  }

  .links-title,
  .social-title {
    font-size: 0.9rem;
    margin-right: 0.3rem;
  }

  .divider {
    margin: 0 0.15rem;
  }
}

#brochure {
  margin: 25px auto;
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.download-btn {
  display: inline-block;
  background: #4b0082;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.download-btn:hover {
  background: #8a2be2;
}

@media (max-width: 768px) {
  #brochure {
    max-width: 90%;
    padding: 15px;
  }

  .download-btn {
    display: block;
    width: 100%;   
  }
}
.bp{
  font-family: Arial, Helvetica, sans-serif;
  color: #f5f5f5;
  padding-bottom: 5px;
}
