* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #047d00;
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #047d00;
}

*::-webkit-scrollbar-thumb {
    background-color: #d4af37;
    border: 1px solid #047d00;
}

body {
    background-color: #292929;
    font-family: "Barlow", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: 0;
    height: 100%;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #047d0073;
    color: white;
    border: none;
    border-radius: 24px;
    padding: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-close-btn {
    position: relative;
    top: -1rem;
    background-color: #f2f2f2;
    border: none;
    border-radius: 50%;
    width: 5.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.modal-close-btn:hover {
    background-color: #e0e0e0;
    transform: scale(1.1);
}


.back-to-top:hover {
    background-color: #005600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero {
    background-color: #292929;
    padding: 12px;
}

.hero-landing {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
}

.hlleft {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.hlright {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.hlleft p,
.hlleft h1,
.hlright h3 {
    color: white;
}

.hlleft h1,
.hlright h3 {
    padding: 12px;
}

.hlleft p {
    height: auto;
    padding: 6px;
}

.heroform {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: column;
    gap: 6px;
    background: #d4af3721;
    padding: 1rem;
    border: solid 2px #047d00;
    border-radius: 2rem;
}

#heroname,
#heromobile,
#heroemail,
#herodescription,
#herobutton {
    background-color: #ffffff;
    color: #292929;
    border: solid #047d00;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

#herodescription {
    height: 120px;
    width: 100%;
    max-width: 400px;
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
    background-color: #ffffff;
    color: #292929;
    resize: none;
}

#heroname:hover,
#heromobile:hover,
#heroemail:hover,
#herodescription:hover,
#herobutton:hover {
    background-color: #d4af37;
    color: white;
}

#heroname::placeholder,
#heromobile::placeholder,
#heroemail::placeholder,
#herodescription::placeholder,
#herobutton::placeholder {
    color: #292929;
}

.input-error {
    color: red;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.input-error.visible {
    opacity: 1;
}

.herotext-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 1rem 0;
    background: transparent;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.herotext-content {
    display: inline-flex;
    animation: scroll-left 60s linear infinite;
    gap: 2rem;
    white-space: nowrap;
    will-change: transform;
    cursor: grab;
}

.herotext-content p {
    color: white;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.herotext-wrapper:hover .herotext-content {
    animation-play-state: paused;
}

.privacy-policy-container,
.terms-container,
.legal-container {
    background-color: white;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.privacy-policy-container h2,
.privacy-policy-container h3,
.terms-container h2,
.terms-container h3,
.legal-container h2,
.legal-container h3 {
    padding: 1rem;
}

.privacy-policy-container p,
.privacy-policy-container li,
.terms-container p,
.legal-container p,
.legal-container li {
    padding: 0.2rem;
}

.pp-wrapper,
.terms-wrapper,
.legal-wrapper {
    height: auto;
    max-width: 600px;
    text-align: center;
}

.services-section {
    padding: 3rem 1rem;
    background-color: #f9f9f9;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.service-card {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 80%;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    flex: 1 1 50%;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.service-content {
    flex: 1 1 50%;
    padding: 2rem;
    text-align: left;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #047d00;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.service-card:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.service-card:nth-child(even) {
    margin-right: 0;
    margin-left: auto;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .service-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .service-content {
        text-align: center;
        padding: 1.5rem;
    }

    .service-content h3 {
        margin-top: 1rem;
    }
}

.whychooseus-wrapper {
    background-color: #f9f9f9;
    padding: 4rem 1rem;
    text-align: center;
}

.whychooseus-content {
    max-width: 1200px;
    margin: 0 auto;
}

.whychooseus-content h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #047d00;
}

.whychooseus-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.whychooseus-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}

.whychooseus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whychooseus-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.whychooseus-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #047d00;
}

.whychooseus-description {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.badges-wrapper {
    max-width: 900px;
    margin: 3rem auto 0 auto;
    padding: 0 1rem;
}

.badges-wrapper img {
    width: 60%;
    height: auto;
    border-radius: 12px;
}

.googlereviews-wrapper {
    padding: 4rem 1rem;
    background: #292929;
}

.googlereviews-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.googlereviews-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #047d00;
}

.reviews-filter {
    margin-bottom: 2rem;
}

.reviews-filter button {
    background: white;
    border: 1px solid #ccc;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.reviews-filter button.active,
.reviews-filter button:hover {
    background: #047d00;
    color: white;
    border-color: #047d00;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.review-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: bold;
}

.review-date {
    font-size: 0.85rem;
    color: #888;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: #333;
}

.reviews-pagination {
    margin-top: 2rem;
}

.reviews-pagination button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    color: #047d00;
}

.average-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: bold;
    color: #047d00;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars svg {
    width: 24px;
    height: 24px;
    fill: #ffc107;
}

.rating-stars .empty {
    fill: #ddd;
}

.rating-count {
    font-size: 0.95rem;
    color: #ddd;
}

/*.socialmedia-wrapper {
    padding: 3rem 1rem;
    background-color: #fafafa;
    text-align: center;
}

.socialmedia-content {
    max-width: 1200px;
    margin: 0 auto;
}

.socialmedia-content h3 {
    font-size: 1.8rem;
    color: #222;
    margin: 2rem 0 1rem;
}

.smtiktok,
.sminstagram {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    justify-content: center;
}

.smtiktok img,
.sminstagram img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.smtiktok img:hover,
.sminstagram img:hover {
    transform: scale(1.05);
}*/

.aboutus-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    background-color: #f6f6f6;
    padding: 2rem;
}

.aboutus-banner {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aboutus-content h3 {
    padding: 2rem;
}

.aws-wrapper {
    background-color: #f3f3f3;
    padding: 3rem 1rem;
}

.aws-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.aws-content h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.aws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: start;
}

.aws-region {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.aws-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #047d00;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.aws-suburbs {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.aws-suburbs li {
    padding: 0.25rem 0;
    color: #555;
    font-size: 0.95rem;
}

.aws-region ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-wrapper {
    background-color: #f9f9f9;
    padding: 3rem 1rem;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-content h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    color: #047d00;
    cursor: pointer;
    padding: 0.5rem 0;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    font-size: 0.95rem;
    color: #555;
    padding: 0 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0.75rem 1rem;
}

.induction-wrapper {
    background-color: #f9f9f9;
    padding: 1rem;
}

.induction-content h3 {
    text-align: center;
    padding: 2rem;
}

#inductionForm {
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: auto;
}

#inductionForm input,
#inductionForm canvas {
    background-color: #ffffff;
    color: #292929;
    border: solid #047d00;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

#inductionForm canvas {
    height: 120px;
    max-width: 100%;
    resize: none;
}

#inductionForm-clearSig,
#inductionForm-button {
    cursor: pointer;
    max-width: 300px;
}

#inductionForm input:hover,
#inductionForm textarea:hover,
#inductionForm select:hover,
#inductionForm-button:hover,
#inductionForm-clearSig:hover {
    background-color: #d4af37;
    color: white;
}

#inductionForm input::placeholder,
#inductionForm textarea::placeholder {
    color: #292929;
}

.inductionForm-section1,
.inductionForm-section2,
.inductionForm-section3 {
    gap: 6px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.inductionForm-section2 label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    max-width: 500px;
    margin: 0.5rem 0;
    position: relative;
}

.inductionForm-section2 label input[type="checkbox"] {
    display: none;
}

.inductionForm-section2 label span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #047d00;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background-color: #fff;
    box-sizing: border-box;
    position: relative;
}

.inductionForm-section2 label input[type="checkbox"]:checked+span::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    pointer-events: none;
}

.inductionForm-section2 label input[type="checkbox"]:checked+span::before {
    background-color: #047d00;
    border-color: #047d00;
}

.inductionForm-section2 label:hover span::before {
    border-color: #035b00;
}


@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 1071px) {
    .hero-landing {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .hlleft,
    .hlright {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .hlleft img {
        max-width: 140px;
    }

    .herotext-inner p {
        font-size: 0.9rem;
    }

    .heroform input {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .hlleft {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-content: center;
        flex-direction: column;
    }

    .hlright {
        width: 100%;
        max-width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .heroform {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .heroform input {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}