.icon-blue { color: #1e81b0; }
.icon-yellow { color: #ffd21e; }


h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.content {
    min-height: calc(100vh - 100px);
    padding-bottom: 100px;
    background: linear-gradient(145deg, #ffffff, #e0f7fa);
}


body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
}

.top-bar {
    background-color: #abdbe3;
    color: #333;
    text-align: center;
    padding: 5px;
    font-size: 0.9em;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    line-height: 0.5;
}

nav {
    background: linear-gradient(90deg, #1e81b0, #63a4ff);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.brand-name {
    flex-grow: 1;
    text-decoration: none;
}

.brand-name h1 {
    color: white;
    margin: 0;
    font-size: 1.6em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-name:hover h1 {
    color: #ffcc00;
}

.brand-name a{
    text-decoration: none;
}

.nav-btn {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.9px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-btn::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.nav-btn:hover::after {
    width: 100%;
}

.splash {
    width: 100%;
    height: 650px;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    animation: zoomAndPan 15s infinite ease-in-out;
}

.splash h2{
    position: absolute;
    bottom: 2em;
    width: 100%;
    display: flex;
    color: white;
    font-size: 2.5em;
    font-weight: bold;
    text-align: right;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2em;
}

.splash-cta .contact-button{
    position: absolute;
    bottom: 2em;
    right: 2em;
    text-align: center;
    margin-top: 20px;
    background-color: #ffd21e;
    font-weight: 600;
    color: #16658a;
}

@keyframes zoomAndPan {
    0% {
        transform: scale(1);
        background-position: -10% center;
    }
    50% {
        transform: scale(1.05); /* Slight zoom in */
        background-position: 20% -5%; /* Pan to the right and down */
    }
    100% {
        transform: scale(1); /* Zoom out back to normal */
        background-position: -10% center;
    }
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    display: block;
    justify-content: center;
}



.page-title{
    font-size: 2em;
    margin-bottom: 30px;
    color: #1e81b0;
    text-align: center;
}

.services, .contact, .index-form{
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    margin-top: 50px;
    margin-bottom: 80px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services:hover, .contact:hover, .index-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.services h3, .contact h3 {
    color: #1e81b0;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.4em;
}

.services p, .contact p {
    font-size: 1.1em;
    line-height: 1.6;
}

.learn-more {
    display: block;
    text-align: right;
    margin-top: 15px;
    font-weight: bold;
    color: #1e81b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1em;
}

.learn-more:hover {
    color: #16658a;
    text-decoration: underline;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-item i {
    margin-right: 10px;
    color: #ffd21e;
    font-size: 1em;
    line-height: 1.5;
}

.service-item p {
    margin: 0;
    flex: 1;
}

.contact {
    margin-top: 20px;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    /*border: 1px solid #ccc;*/
    padding: 20px;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
}

.contact-info a {
    color: #1e81b0;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form-container {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.contact-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #1e81b0;
    font-size: 1.4em;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
}

.contact-form-container label {
    font-weight: bold;
    margin-bottom: 0;
}

.contact-form-container input,
.contact-form-container textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1em;
    resize: vertical;
}

.contact-form-container button {
    padding: 10px 20px;
    background-color: #1e81b0;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form-container button:hover {
    background-color: #166994;
}

input, textarea, label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    color: #333;
}

.services-page-container {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    font-size: 1.1em;
    line-height: 1.6;
}

.service-row {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    position: relative;
}

#first-service{
    margin-top: -30px;
}

.service-row h4 {
    margin-bottom: 8px;
    color: #166994;
    font-size: 1.1em;
}

.service-row .price {
    font-weight: bold;
    color: #1e81b0;
    margin-top: 5px;
}

.service-cta {
    text-align: center;
    margin-top: 20px;
}

.contact-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1e81b0;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #166994;
}

.service-row::after {
    content: "";
    display: table;
    clear: both;
}

.tax {
    font-size: 0.8em;
}

footer {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 10px;
    background-color: #1e81b0;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1e81b0;
    color: white;
    padding: 8px;
    z-index: 100;
}
.skip-link:focus {
    top: 10px;
}

/* Hamburger icon base */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* X icon animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive nav */
 @media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: linear-gradient(90deg, #1e81b0, #63a4ff);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
        z-index: 9;
        padding: 20px 0;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-btn {
        margin: 15px 0;
        font-size: 1.2em;
        display: block;
        position: relative;
        padding: 5px 0;
    }

    .nav-btn::after {
        display: none;
    }

    .nav-btn:hover {
        color: #ffcc00; /* Accent color on hover */
        background-color: rgba(255, 255, 255, 0.1); /* Subtle background on hover */
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
}

/* Optional: prevent scroll when menu is open */
.no-scroll {
  overflow: hidden;
}




