/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Header Styles */
header {
  background-color: lightblue;
  color: white;
  padding: 10px;
  font-size: 24px;
}

header h1 {
  color: white;
}

/* Button Styles */
.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  margin: 10px;
}

.btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.btn:hover::after {
  transform: scaleX(1);
}

.btn:focus {
  transform: scale(1.1);
}

.btn:active {
  transform: scale(0.9);
}

.btn:not(:last-child) {
  margin-right: 10px;
}

.btn-container::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: lightgray;
}

/* Navigation Styles */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 10px;
    /* Adjust the margin as desired */
}

nav ul li:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    /* Adjust the margin as desired */
    color: gray;
    /* Adjust the color as desired */
}

nav ul li a {
    position: relative;
    color: white;
    /* Set the text color to white */
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: none;
}

nav ul li a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    /* Adjust the underline position as desired */
    height: 2px;
    /* Adjust the underline height as desired */
    background-color: black;
    /* Adjust the underline color as desired */
}

/* Add CSS styles for indicating the current page in the navigation menu */
nav ul li.current-page a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    /* Adjust the underline position as desired */
    height: 2px;
    /* Adjust the underline height as desired */
    background-color: black;
    /* Adjust the underline color as desired */
}
nav ul li a {
    font-size: 30px; /* Increase the font size */
    padding: 10px 20px; /* Increase the padding around the button */
}
nav {
    display: flex;
    align-items: center;
    justify-content: center; /* Center buttons horizontally */
    flex-direction: column; /* Stack elements vertically */
}
/* Section Styles */
section {
  padding: 50px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h1 {
  font-size: 36px;
  color: black;
  margin-bottom: 20px;
}

section p {
  font-size: 18px;
  color: #666;
}

/* Breadcrumb Styles */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 5px 10px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-top: 2em;
  background-color: black;
  width: 100%;
}

/* Add CSS styles for the section title */
.section-title {
  font-size: 24px;
  text-decoration: underline;
}

/* Dropdown Menu Styles */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: lightblue;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 1px solid lightgray;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: bold;
  border-bottom: 1px solid white;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown:hover .dropdown-content {
  display: block;

}
.enquire-button {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-90deg);
    background-color: lightblue;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Add CSS styles for the enquiry form */
.enquiry-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.enquiry-form {
    background-color: white;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
}

.enquiry-form label {
    display: block;
    margin-bottom: 10px;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
}

.enquiry-form button {
    background-color: blue;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: black;
    cursor: pointer;
}

/* CSS for Flex container */
.flex-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}


/* Footer Styles */
footer {
  background-color: black;
  color: #fff;
  padding: 10px;
  text-align: center;
}

footer .contact-info,
footer .location-info {
  display: inline-block;
  text-align: center;
  width: 33.33%;
}

footer .follow-us {
  display: inline-block;
  text-align: center;
  width: 33.33%;
}

footer p {
  margin: 5px 0;
  font-weight: bold;
}

.clearfix {
  clear: both;
}
.welcome-text {
            font-size: 20px; /* Adjust the font size as desired */
            line-height: 1.5; /* Adjust the line height as desired */
            text-align: justify; /* Align the text to justify */
            margin: 0 auto; /* Center the text horizontally */
            max-width: 800px;
			color:black;
			}
