/*------------------------------------------------------------------

COLOR:	DEFAULT BLANK CSS (NO ANY CODE)

-------------------------------------------------------------------*/
#map-section {
    width: 100%;
    height: 400px; /* Adjust height as needed */
    position: relative;
    overflow: hidden;
}

#map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.contact-section {
  display: flex;
  justify-content: center; /* Center the containers horizontally */
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px 80px;
  background-color: #f9f9f9;
  margin: 0 auto; /* Center the section in the middle of the page */
}

/* Column Styling */
.contact-column {
  flex: 1;
  max-width: 400px; /* Limit the maximum width of each column */
  min-width: 280px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 0px;
  text-align: left; /* left the content in each column */
}

/* Heading Color and Alignment */
.contact-column h3 {
  margin-bottom: 20px;
  color: #007BFF; /* Blue color */
  text-align: center; /* Center the heading */
}

/* Location Details */
.location-details p {
  margin-bottom: 10px;
  color: #555;
}

/* Adjusting Address */
.location-details .address-line {
  margin-top: 80px; /* Move the address part down */
}

/* Contact Form Styling */
.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #007BFF;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #0056b3;
}


/* Styling for the logo or icon */
.logo-container {
  margin-top: 20px; /* Space between phone number and logo */
  text-align: center; /* Center the logo */
}

/* Social Media Icon Styling */
.socials {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the icons */
  margin-top: 20px;
}

.socials a {
  display: flex;
  align-items: center;
  color: #007BFF; /* Blue color for the icon and text */
  text-decoration: none;
  font-size: 18px;
  margin: 10px 0; /* Space between each icon */
  transition: color 0.3s ease; /* Add a smooth transition effect */
}

.socials a:hover {
  color: #0056b3; /* Darker blue when hovered */
}

.socials i {
  font-size: 40px; /* Icon size */
  margin-right: 10px; /* Space between icon and text */
}

.socials span {
  font-size: 16px; /* Adjust the size of the text */
}

