body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;

}

/* 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 */
}
nav ul li a {
    font-size: 30px; /* Increase the font size */
    padding: 10px 20px; /* Increase the padding around the button */
	 border-radius: 5px;
}

/* 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 {
    display: flex;
    align-items: center;
    justify-content: center; /* Center buttons horizontally */
    flex-direction: column; /* Stack elements vertically */
}.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;
}

/* 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;
}

.contact-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.contact-info {
    margin-right: 20px;
    flex: 2;
}

.contact-info h1 {
    font-family: 'Times New Roman', serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-info h2 {
    font-family: 'Times New Roman', serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 50%;
    max-width: 50%;
}

.icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.map {
    flex: 1;
    height: 40vh; /* Adjust the height as desired */
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.enquiry-form {
    flex: 1;
    margin-top: 250px;
	  margin-right: 280px;
}

.enquiry-form h3 {
    font-family: 'Times New Roman', serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.enquiry-form form {
    display: flex;
    flex-direction: column;
}

.enquiry-form label {
    margin-top: 10px;
}

.enquiry-form input,
.enquiry-form textarea {
    padding: 5px;
    margin-bottom: 10px;
}

.enquiry-form button {
    padding: 10px 20px;
    background-color: lightblue;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    align-self: flex-start;
    max-width: 200px;
}

.enquiry-form button:hover {
    transform: scale(1.1);
}

.enquiry-form button:active {
    transform: scale(0.9);
}



footer {
    background: #333;
    padding: 10px;
    color: #fff;
    text-align: center;
}
