/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}

body {

  color: #1e1e1e;
  background: #f9f9f9;
}

img {
  max-width: 100%;
  border-radius: 10px;
}




/* Header */
.contact-header {
  background-image: url('../img/about/137539\ 1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.inner-header h1 {
  background-color: #001f3fbb;
  display: flex;
  justify-content: center;
  
  color: white;
height: 300px;
  margin: 0%;
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  align-items: center;
  padding-top: 90px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}



/* WhatsApp Button */


.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;


  border-radius: 50px;

  cursor: pointer;
  padding: 5px 10px 5px 15px;
  transition: all 0.3s ease;
  z-index: 9999;
}

.contact-text {
  background-color: white;
  padding: 5px 10px;
  font-size: 14px;

  border-radius: 8%;
  font-weight: 600;
  color: #016e13;
  margin-right: 8px;
  transition: color 0.3s, font-weight 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  padding: 8px;
  box-sizing: border-box;
  transition: 1s linear;
}







/* Contact Info Section */
.contact-info {
  text-align: center;
  padding: 0px ;
}

.contact-info h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #003366;
}

.info-grid {
  margin: 0%;
  padding: 0%;
  display:flex;
flex-wrap: wrap;
flex-direction: row;
  justify-content: center;
  gap: 30px;
}

.info-box {
   /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
   border-radius: 10px; */
height: 150px;
padding: 10px;
  max-width: 250px;
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  

}

.info-box img {
  width: 30px;
  font-size: 24px;
  color: #007bff;
  margin-bottom: 10px;
}



.social-icons a {
  margin: 0 8px;
  color: #007bff;
  font-size: 18px;
}

/* Form Section */
.contact-form-section {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.contact-form-section h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #003366;
}

form {
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
  height: 100px;
}

form button {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

form button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .info-grid {
    flex-wrap: wrap;
    align-items: center;
  }
}

/* footer */

.contact-section {
  position: relative;
  background-color: rgb(0, 0, 70);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}

.contact-overlay {
  background-color: rgba(0, 0, 50, 0.7);
  padding: 40px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  width: 100%;
}

.subheading {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 10px;
}

.contact-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;

}

.contact-btn {
  padding: 12px 25px;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 15px;
}

.contact-btn:hover {
  background-color: #0056b3;
}

.contact-number {
  font-size: 1.1rem;
}

.contact-number a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.footer {
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px;
  color: #0b1a42;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

#social-icons a {
  color: #0b1a42;



  text-decoration: none;
  transition: color 0.3s ease;
}

#social-icons a:hover {
  color: #007bff;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .contact-section h1 {
    font-size: 1.5rem;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .contact-number {
    font-size: 1rem;
  }
}