/* Custom styles for the template */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #E5E5E5;
    background-color: #101F37;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    width: 100%;
    height: 15vh;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    background-color: #101F37;
    box-sizing: border-box;
}

.header img {
    max-height: 80%;
}

.main-focus {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    background: linear-gradient(180deg, #101F37 0%, #2E589D 100%);
    box-sizing: border-box;
}

.main-focus .content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.main-focus .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-focus h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #9CF1C4;
}

.main-focus p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.main-focus img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
}

#contactBtn {
    background-color: #007bff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.25);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#contactBtn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 123, 255, 0.3);
}

#contactBtn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.services {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    background-color: #101F37;
    box-sizing: border-box;
}

.services .content {
    max-width: 1000px;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-block {
    flex: 1 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
    text-align: center;
    padding: 2rem;
    margin: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid #9CF1C4;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-block svg {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    stroke: #9CF1C4;
    transition: stroke 0.3s, transform 0.3s;
}

.service-block img {
    max-width: 80px;
    height: auto;
    margin-bottom: 1.5rem;
}

.service-block:hover svg {
    stroke: #E5E5E5;
    transform: scale(1.1);
}

.service-block h2 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.service-block p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-block {
      flex: 1 1 100%;
      max-width: 100%;
      margin: 1rem 0;
    }
  }

@media (min-width: 768px) {
    .header {
        justify-content: center;
    }

    .main-focus .content {
        flex-direction: row;
        align-items: center;
    }

    .main-focus .text {
        flex: 1;
        text-align: left;
        align-items: flex-start;
    }

    .main-focus img {
        flex: 1;
        max-width: 50%;
        margin-left: 2rem;
        margin-top: 0;
    }

    .service-block {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (min-width: 1024px) {
    .main-focus h1 {
        font-size: 3rem;
    }

    .main-focus p {
        font-size: 1.25rem;
    }

    .service-block {
        flex: 1 1 30%;
        max-width: 30%;
    }
}

@media screen and (max-height: 1000px) {
    .booknote {
        display: none;
    }
}

/* Add this to the footer styles */
.footer {
    width: 100%;
    padding: 2rem 0;
    background-color: #E5E5E5;
    color: #101F37;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-top: 2px solid #9CF1C4;
}

.footer .content {
    max-width: 1000px;
    width: 100%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.footer a {
    color: #101F37;
    text-decoration: none;
    margin: 0.5rem 0;
    font-weight: bold;
    transition: color 0.3s;
}

.footer a:hover {
    color: #2E589D;
}

.footer p {
    margin: 0.5rem 0;
}

.footer .social-icons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footer .social-icons a {
    color: #101F37;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #2E589D;
}
/* Styling for the contact form */
.booknote {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-bottom: 5px solid #9CF1C4;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0;
}

.booknote.show {
    padding: 1.5rem 2rem;
    max-height: 100px;
    opacity: 1;
}

.booknote-content {
    display: flex;
    align-items: center;
}

.booknote .icon {
    font-size: 2rem;
    color: #007bff;
    margin-right: 1rem;
}

.email-link {
    font-size: 1.2rem;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.email-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #9CF1C4;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.email-link:hover {
    color: #0056b3;
    text-decoration: none;
}


.email-link:hover::after {
    transform: scaleX(1);
}


.booknote .close-btn {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.booknote .close-btn:hover {
    color: #333;
}

.footer-link {
    color: #007bff;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.form-container {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.form-group textarea {
    height: 100px;
}

#contactBtn {
    margin: 20px 0;
}

/* Optional: Add some space between content and services block when form is shown */
body.form-active {
    padding-bottom: 300px; /* Adjust this value to match form height */
}
