
.main-container {
  max-width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.text-container-contact {
  padding: 40px;
  text-align: center;
  position: relative;
}

.text-heading {
  font-weight: 500;
  font-family: "Josefin Slab", serif;
  font-size: 2rem;
}

.text-para {
  color: #323232;
}
.sub-container {
  display: flex;
  justify-content: space-evenly;
}
.container1 {
  width: 30%;
}
.container2-contact {
  width: 40%;
  height: 520px;;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border-radius: 8px;
  background: white;
}

.contact-icon {
  border: 1px solid #e0e0e0;
  font-size: 20px;
  margin-right: 15px;
  width: 55px;
  text-align: center;
  padding: 10px;
}

.contact-details {
  flex: 1;
}

.contact-item h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #323232;
}

.contact-item p {
  color: #323232;
  font-size: 15px;
}
.social-media {
  display: flex;
  gap: 15px;
  margin-top: 6px;
  margin-bottom: 21px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11%;
  height: 40px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid #e0e0e0;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #f564a9;
}

.send-btn {
  background-color: #f564a9;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-flex;
  align-items: center;
}
.contact-form {
  width: 86%;
  position: relative;
  left: 20px;
  top: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-col {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

input,
textarea {
  width: 89%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #f564a9;
}

textarea {
  height: 120px;
  resize: vertical;
}

.send-btn:hover {
  background-color: #d45592;
}

.send-btn i {
  margin-left: 8px;
  font-size: 14px;
}



/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  .text-container {
    padding: 20px;
  }

  .text-heading {
    font-size: 1.5rem;
  }

  .sub-container {
    flex-direction: column;
    align-items: center;
  }

  .container1 {
    width: 90%;
    margin-bottom: 20px;
  }

  .container2-contact {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .contact-form {
    width: 90%;
    left: 0;
    top: 20px;
  }
#email p{
  font-size: 11px;
}
  .form-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    
  }

  .form-col {
    width: 100%;
  }

  input,
  textarea {
    width: 90%;
  }

  .social-media {
    justify-content: center;
    gap: 10px;
  }

  .social-link {
    width: 20%;
  }

  .contact-item {
    padding: 10px;
  }

  .contact-icon {
    font-size: 18px;
    width: 38px;
    padding: 8px;
  }

  h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .text-heading {
    font-size: 1.2rem;
  }

  .text-para {
    font-size: 14px;
  }

  .contact-item h3 {
    font-size: 14px;
  }

  .contact-item p {
    font-size: 13px;
  }

  .social-link {
    width: 25%;
    height: 35px;
    font-size: 16px;
  }

  .send-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  input,
  textarea {
    padding: 10px;
    font-size: 14px;
  }

  .contact-form {
    top: 15px;
  }

  h2 {
    font-size: 18px;
  }
}

