        * {
            box-sizing: border-box;
        }
        body, html {
            margin: 0;
            padding: 0;
            font-family: "Karla", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            line-height: 1.6;
        }
        .alignleft{
          float: left;
          margin: 5px 10px;
        }
        .alignright{
          float: right;
          margin: 5px 10px;
        }
        .alignnone{
          float: none;
          margin:0 auto;
          display: block;
        }
        section {
            padding: 30px 20px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #f8f8f8;
            padding: 20px 0;
        }
        nav ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        nav ul li {
            margin: 5px 10px;
        }
        nav ul li a {
            text-decoration: none;
            color: #333;
        }
        .nav-menu {
            position: relative;
        }
        
        .menu-items {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        
        .menu-items li {
            display: inline-block;
            margin-right: 20px;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 5px 0;
        }

        .hero {
            background-color: #e9e9e9;
            text-align: center;
            padding: 60px 0;
            background: url(Bubbles_Blue.png) repeat;
        }
        h1{
          font-size:3.5rem;
          margin:0 auto;
          
        }
        h2{
          font-size:2.5rem;
          margin:0px auto;
          text-align: center;
        }
        h3{
          font-size:1.5rem;
          margin:10px auto;
          
        }
        p{
          font-size:1.5rem;
          margin:40px auto;
          text-align: center;
        }
        ul{
          font-size:1.2rem;
          margin:10px auto;
          text-align: left;
        }

        .tagline{
          font-size: 1.5rem;
          font-style: italic;
          font-weight: bold;
        }
        .cta-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #8accdd;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 60px;
            transition: 0.3s;
            text-shadow: 2px 2px 4px black;
            font-size: 1.5rem;
            max-width: 300px;
            width:100%;
            box-shadow: 0px 1px 10px rgba(95, 105, 112, 0.4);
        }
        .cta-button:hover {
            background-color: #6197aa;
        }

        .welcome-img{
            max-width: 25%;
            width: 100%;
        }
        #services{
          background: #89cbdb;
        }
        .services ul {
            padding-left: 20px;
        }

        .services ul li {
          text-align: left !important;
          margin: 10px auto;
      }
        .service-container {
          display: flex;
          flex-direction: row;
          gap: 20px; /* Adjust the space between blocks as needed */
      }
      
      .service-block {
          width: 33.333%;
          padding: 40px;
          border: 1px solid #ccc; /* Optional: adds a border around each block */
          text-align: left;
          background: #fff;
          color: #000;
      }
      .services-button {
        display: block;
        padding: 10px 20px;
        background-color: #14222e;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        margin: 20px auto;
        text-align: center;
        transition: 0.3s;
        text-shadow: 2px 2px 4px black;
        font-size: 1.5rem;
        max-width:300px;
        width: 100%;
        box-shadow: 0px 1px 10px rgba(95, 105, 112, 0.4);
    }
    .services-button:hover {
        background-color: #415464;
    }
    blockquote {
    background: #a8c9d6;
    border-left: 2px solid #1c2b34;
    padding: 30px 20px;
    margin: 1rem 1rem 4rem;
    font-style: italic;
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
    text-align:left;
    
}
#testimonials{
    background-color: #f8f8f8;
}
.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.testimonial-container {
    position: relative;
    height: 300px; /* Adjust based on your content */
    background: #89cbdb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px 60px;
    box-sizing: border-box;
    text-align: center;
}

.testimonial.active {
    opacity: 1;
}
.testimonial p{
    margin: 45px auto 0px;
}

.testimonial .author {
    font-style: italic;
    margin: 10px auto 0px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(23,34,43,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Start Slider for Get Social With Us section */

.social-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.slider-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}
.prev { left: 10px; }
.next { right: 10px; }
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* End of Slider for Get Social With Us */

#contact .container{
    background: #fff;
    box-shadow: 0px 1px 10px rgba(95, 105, 112, 0.28);
    padding: 40px;
}
form {
            display: flex;
            flex-direction: column;
        }
        form input, form select, form textarea {
            margin-bottom: 15px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        form button {
            font-size: 1.2rem;
            padding: 10px;
            background-color: #8accdd;
            color: #fff;
            text-shadow: 2px 2px 4px black;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin:0 auto;
            max-width: 300px;
            width: 100%;
            box-shadow: 0px 1px 10px rgba(95, 105, 112, 0.4);
        }
        form button:hover {
            background-color: #6197aa;
        }

        ::placeholder { /* Standard syntax */
            font-size: 1.2rem;
          }
          
          ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
            font-size: 1.2rem;
          }
          
          :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
            font-size: 1.2rem;
            opacity: 1;
          }
          
          ::-moz-placeholder { /* Mozilla Firefox 19+ */
            font-size: 1.2rem;
            opacity: 1;
          }
          
          :-ms-input-placeholder { /* Internet Explorer 10-11 */
            font-size: 1.2rem;
          }
          
          ::-ms-input-placeholder { /* Microsoft Edge */
            font-size: 1.2rem;
          }
          select {
            font-size: 1.2rem; /* Adjust this value as needed */
            color: #737171;
          }
          .social-feed h2 {
            font-size: 2.5rem;
            font-weight: 400;
            color: #5eaabd;
            text-align: center;
        }
        .connect {
            display: block;
            margin: 0px auto 30px;
            text-align: center;
        }
        .connect .ig-accounts {
            display: inline-flex;
            list-style-type: none;
            vertical-align: bottom;
            padding-left: 15px;
        }
        .connect .ig-accounts .button {
            background: #fff;
            border: 1px solid #000;
            border-radius: 4px;
            color: #000;
            margin-right: 12px;
            transition: .3s;
            min-height: 32px;
            width: auto;
            font-size: 16px;
            line-height: 18px;
            padding: 8px;
            text-decoration: none;
        }
        .connect .ig-accounts .button:hover {
            background: #89cbdb;
            color: #000;
        }
        .connect .fa-instagram {
            font-size: 38px;
            margin-bottom: 5px;
        }
        .social-feed-container {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
            overflow: hidden;
        }
        .social-feed-container .caption{
            text-align: center;
            font-size: 1.2rem;
            font-style:italic;
            margin: 0px auto;
        }
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            box-sizing: border-box;
            padding: 0 10px;
        }
        
        .slide img {
            width: 100%;
            height: auto;
        }
        
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
        }
        
        .prev { left: 10px; }
        .next { right: 10px; }
        #contact{
            background-color: #f8f8f8;
        }
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 40px 0px 20px;
        }
        footer p{
            margin: 0px auto 40px;
        }
        input, select, textarea {
            outline: none;
          }

        @media (max-width: 768px) {
            .menu-items {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #f8f8f8;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }
        
            .menu-items.show {
                display: block;
            }
        
            .menu-items li {
                display: block;
                margin: 0;
                padding: 10px;
                border-bottom: 1px solid #e0e0e0;
            }
        
            .hamburger {
                display: block;
            }
            h2 {
                font-size: 1.5rem;
            }
            p {
                font-size: 18px;
            }
            .hero {
                padding: 40px 0;
            }
            .hero h1 {
                font-size: 24px;
            }
            .hero p {
                font-size: 16px;
            }
            .welcome-img{
                max-width: 45%;
            }
            section {
                padding: 30px 15px;
            }
            .service-container {
              flex-direction: column;
              flex-wrap: nowrap;
          }
      
          .service-block {
              width: 100%;
              flex: 0 0 auto;
          }
        }
        @media (max-width: 480px) {
            .welcome-img{
                max-width: 80%;
            }
        }