/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0;
  *zoom: 1;
}

.bx-wrapper img {
  width: 100%;
  max-width: 100%;
  display: block;
}

#services .service-item h3 {
    text-align: center; /* Centers the heading */
}

#services .service-item p {
    text-align: justify; /* Justifies the paragraph text */
}

#gallery .image-caption {
    text-align: justify; /* Justifies the text */
    text-justify: inter-word; /* Adjusts the spacing between words for better justification */
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-direction: column; /* Stack the logo and text vertically */
    align-items: center; /* Center align content horizontally */
    justify-content: center; /* Center align content vertically */
    text-align: center; /* Align the text in the center */
    margin-bottom: 20px;
}

/* Logo Styling */
.contact-logo {
    width: 100px;  /* Adjust the logo size */
    height: auto;
    margin-bottom: 10px; /* Add space between the logo and the text */
}

/* Email Section Styling */
.email-logo p {
    font-size: 1.2em;
    color: #333;
    margin: 0;
}

.email-logo a {
    color: #007bff; /* Add color for the email link */
    text-decoration: none;
}

.email-logo a:hover {
    text-decoration: underline;
}

/* Phone Section Styling */
.phone-logo p {
    font-size: 1.2em;
    color: #333;
    margin: 0;
}

.phone-logo a {
    color: #007bff; /* Add color for the phone link */
    text-decoration: none;
}

.phone-logo a:hover {
    text-decoration: underline;
}

