body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e0f7fa;
}

header {
    background-color: #0288d1;
    color: white;
    padding: 1em;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

header img.logo {
    height: 50px;
}

.container {
    padding: 2em;
    max-width: 800px;
    width: calc(100% - 40px);
    background-color: white;
    margin: 1em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 4pt solid #0288d1;
}

#floatingMenu {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0288d1;
  color: white;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#floatingMenu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

#floatingMenu ul li {
  margin: 0 10px;
}

#floatingMenu ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 4px;
  background: #0277bd;
  transition: background 0.3s;
}

#floatingMenu ul li a:hover {
  background: #0266a0;
}

#floatingMenu .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

#floatingMenu .menu-toggle span {
  background: white;
  height: 2px;
  width: 25px;
  margin: 4px 0;
}

@media (max-width: 768px) {
  #floatingMenu ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0288d1;
    position: absolute;
    top: 50px;
    left: 0;
  }
  
  #floatingMenu ul li {
    text-align: center;
    margin: 10px 0;
  }

  #floatingMenu .menu-toggle {
    display: flex;
  }

  #floatingMenu ul.active {
    display: flex;
  }
}

.section-container {
    border: 4pt solid #0288d1;
    border-radius: 8px;
    padding: 2em;
    margin: 1em 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}


.location {
    margin-bottom: 20px;
}

.location-frame {
    border: 2pt solid #0288d1;
    border-radius: 8px;
    padding: 1em;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

h2, h3 {
    color: #01579b;
}

button.collapsible {
    background-color: #0288d1;
    color: white;
    cursor: pointer;
    padding: 10px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin-top: 10px;
    border-radius: 4px;
}

button.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

button.collapsible.active:after {
    content: "\2212";
}

button.collapsible.active, button.collapsible:hover {
    background-color: #0277bd;
}

div.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-top: 5px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-item {
    position: relative;
    width: 45%;
    margin-bottom: 20px;
    cursor: pointer;
}

.service-item img {
    width: 100%;
    border-radius: 8px;
    transition: 0.3s;
}

.service-item:hover img {
    opacity: 0.3;
}

.service-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 18px;
    opacity: 0;
    transition: 0.3s;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
}

.service-item:hover .service-description {
    opacity: 1;
}

.review-carousel {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border: 4pt solid #0288d1;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.review-slide {
    display: none;
    padding: 20px;
    text-align: center;
}

.review-slide.active {
    display: block;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.review-slide p {
    font-size: 16px;
    line-height: 1.6;
}

.review-slide img {
    width: 100px; /* Adjust the size as needed */
    margin: 10px 0;
}

#backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #0288d1; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Add some shadow */
}

#backToTopBtn:hover {
    background-color: #0277bd; /* Darker background on hover */
}

.social-media img {
    width: 40px;
    height: 40px;
}

.icon {
    width: 24px;  /* Adjust width as needed */
    height: 24px; /* Adjust height as needed */
    margin-right: 10px; /* Spacing between icon and text */
    vertical-align: middle; /* Align icons with text */
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1em;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.contact-info .info-item p {
    margin: 0;
    margin-left: 10px;
}

.contact-info a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0288d1;
    font-size: 18px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form-container {
    margin-top: 2em;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.5em;
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 1em;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form button {
    background-color: #0288d1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #0277bd;
}

{
  font-family: 'Droid Serif', serif;
}

h1 {
  font-size: 40px;
  text-align: center;
}

.content-slider {
  width: 100%;
  height: 360px;
}

.slider {
  height: 320px;
  width: 680px;
  margin: 40px auto 0;
  overflow: visible;
  position: relative;
}

.mask {
  overflow: hidden;
  height: 320px;
}

.slider ul {
  margin: 0;
  padding: 0;
  position: relative;
}

.slider li {
  width: 680px;
  height: 320px;
  position: absolute;
  top: -325px;
  list-style: none;
}

.slider .quote {
  font-size: 15px;
  font-style: italic;
}

.slider .source {
  font-size: 16px;
  text-align: right;
}

.slider .stars {
  width: 100px;
  vertical-align: middle;
  margin-right: 10px;
}

.slider li.anim1 {
  animation: cycle 15s linear infinite;
}

.slider li.anim2 {
  animation: cycle2 15s linear infinite;
}

.slider li.anim3 {
  animation: cycle3 15s linear infinite;
}

.slider li.anim4 {
  animation: cycle4 15s linear infinite;
}

.slider li.anim5 {
  animation: cycle5 15s linear infinite;
}

.slider:hover li {
  animation-play-state: paused;
}

@keyframes cycle {
  0% {
    top: 0px;
  }
  4% {
    top: 0px;
  }
  16% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  20% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  21% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  50% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  92% {
    top: -325px;
    opacity: 0;
    z-index: 0;
  }
  96% {
    top: -325px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}

@keyframes cycle2 {
  0% {
    top: -325px;
    opacity: 0;
  }
  16% {
    top: -325px;
    opacity: 0;
  }
  20% {
    top: 0px;
    opacity: 1;
  }
  24% {
    top: 0px;
    opacity: 1;
  }
  36% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  40% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  41% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  100% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle3 {
  0% {
    top: -325px;
    opacity: 0;
  }
  36% {
    top: -325px;
    opacity: 0;
  }
  40% {
    top: 0px;
    opacity: 1;
  }
  44% {
    top: 0px;
    opacity: 1;
  }
  56% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  60% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  61% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  100% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle4 {
  0% {
    top: -325px;
    opacity: 0;
  }
  56% {
    top: -325px;
    opacity: 0;
  }
  60% {
    top: 0px;
    opacity: 1;
  }
  64% {
    top: 0px;
    opacity: 1;
  }
  76% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  80% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  81% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  100% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle5 {
  0% {
    top: -325px;
    opacity: 0;
  }
  76% {
    top: -325px;
    opacity: 0;
  }
  80% {
	top: 0px;
    opacity: 1;
  }
  84% {
    top: 0px;
    opacity: 1;
  }
  96% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  100% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
}


footer {
    margin-top: 2em;
    padding: 1em;
    background-color: #0288d1;
    color: white;
    text-align: center;
    width: 100%;
}

footer a {
    color: white;
    text-decoration: none;

    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container {
        padding: 1em;
        margin: 1em 20px;
        width: calc(100% - 40px);
    }

    header img.logo {
        height: 80px;
    }

    .service-item {
        width: 100%;
    }
	

