/* =========================================================================
   New Home Page Styles & Animations
   ========================================================================= */

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --brand-primary: #013B8F;
    /* Dark Blue */
    --brand-success: #61B20B;
    /* Light Green */
    --text-dark: #222222;
    --text-muted: #6c757d;
    --section-padding: 80px 0;
}

.text-primary {
    color: var(--brand-primary) !important;
}

.bg-primary {
    background-color: var(--brand-primary) !important;
}

.text-success {
    color: var(--brand-success) !important;
}

.bg-success {
    background-color: var(--brand-success) !important;
}

.border-primary {
    border-color: var(--brand-primary) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.section-padding {
    padding: var(--section-padding);
}

.lowercase {
    text-transform: lowercase;
}

.transition-all {
    transition: all 0.3s ease-in-out;
}

/* --- Hero Section --- */
.new-hero-section {
    min-height: 90vh;
    background: url('../images/hero-banner.png') center right/contain no-repeat;
    position: relative;
    overflow: hidden;
}

.new-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #020407CC;
    z-index: 0;
}

.new-hero-content {
    z-index: 2;
}

.new-hero-title {
    letter-spacing: 1px;
    font-size: 75px;
    font-weight: 400;
}

.new-hero-title b {
    font-weight: 700;
}

.hero-highlight {
    color: var(--brand-success);
    /* font-weight: 700; */
}

p.new-hero-subtitle {
    font-size: 30px;
    font-weight: 400;
    text-align: left;
    margin-top: 40px;
}

.banner-btn {
    font-weight: 500;
    font-size: 20px;
    padding: 20px 30px 20px 10px;
    letter-spacing: 0.5px;
}

.hero-cta-btn {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-right: 15px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 66, 144, 0.3);
}

.hero-cta-btn .arrow-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
}

/* .hero-cta-btn .arrow-icon svg {
    width: 40px;
    height: 40px;
} */

.hero-features i {
    color: var(--brand-success);
}

/* --- How It Works Section --- */
.section-title {
    font-size: 45px;
    color: #013B8F;
}

.section-subtitle {
    font-size: 21px;
    font-weight: 600;
}

.inner-container {
    max-width: 850px;
    margin: 0 auto;
}

.work-step {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.step-content {
    position: relative;
}

.connection-line {
    position: absolute;
    width: 150px;
    height: 2px;
    background: repeating-linear-gradient(to right, #ccc, #ccc 5px, transparent 5px, transparent 10px);
    z-index: -1;
    left: 100%;
    top: 15px;
    opacity: 0.5;
}

.top-line {
    width: 450px;
    left: 100%;
    top: 15px;
    transform: rotate(5deg);
    transform-origin: left center;
}

.middle-line {
    width: 350px;
    left: 100%;
    top: 15px;
    transform: rotate(0deg);
}

.step-content h5 {
    font-size: 30px;
    font-weight: 600;
    color: #063232;
}

.step-num::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 22px;
    width: 1px;
    height: 35px;
    border-right: 1px solid #D9D9D9;
    /* opacity: 0.5; */
}

.work-step:first-child .step-num:after {
    border-right: 1px solid var(--brand-success);
}

.work-step:last-child .step-num:after {
    display: none;
}

.step-content p {
    font-size: 20px;
    text-align: left;
    font-weight: 500;
    color: #607C7E;
}

.bottom-line {
    width: 400px;
    left: 100%;
    top: 15px;
    transform: rotate(-5deg);
    transform-origin: left center;
}

.phone-mockup {
    border-radius: 35px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2) !important;
}

.phone-top-notch {
    width: 100px;
    height: 20px;
    background: #2F3666;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 2;
}

.progress-step {
    height: 5px;
    background: #e9ecef;
}

.progress-step.active {
    background: var(--brand-primary);
}

.app-btn:hover {
    background: #12306d;
    box-shadow: 0 5px 15px rgba(26, 66, 144, 0.4) !important;
    transform: translateY(-2px);
    transition: all 0.3s;
}

/* --- Categories Section --- */
.category-card {
    border: 1px solid transparent;
    cursor: pointer;
    height: 250px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover {
    background-color: var(--brand-success) !important;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(111, 176, 54, 0.3) !important;
}

.category-card .cat-title {
    font-size: 25px;
    font-weight: 600;
    color: #013B8F;
}

.category-card:hover .cat-title,
.category-card:hover .cat-icon svg path {
    fill: #fff !important;
    color: #fff;
}

.cat-icon i {
    transition: all 0.3s ease;
    color: var(--brand-primary);
}

/* --- Why Choose Section --- */
.reason-card {
    background: #fff;
    border-right: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.reason-card:hover {
    background: #fdfdfd;
    /* transform: translateY(-4px); */
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .05);
    border-color: #eee !important;
}

.reason-card:hover .reason-num {
    background-color: var(--brand-success) !important;
    color: #fff !important;
    border-color: var(--brand-success) !important;
}

.why-choose-img-wrapper img {
    transition: transform 0.8s ease;
}

.why-choose-img-wrapper:hover img {
    transform: scale(1.05);
}

.why-choose {
    padding: 80px 0;
    padding-right: 90px;
}

.why-choose .row .order-1 .row {
    border-radius: 8px;
    border: 1px solid #D9D9D9;
}

.reason-card h5 {
    font-size: 25px;
    font-weight: 600;
    color: #063232;
}

.reason-card .reason-num {
    width: 45px;
    height: 45px;
}

.reason-card p {
    padding-top: 5px;
    font-size: 17px;
    font-weight: 500;
    color: #607C7E;
    text-align: left;
}

/* --- CTA Banner Section --- */
.cta-banner {
    background-color: #7ab93c;
    /* Exact green tone from image */
}

.green-bg-pattern {
    background: url('../images/Maskgroup.png') center center/cover no-repeat;
    /* background-size: 80px 140px; */
    /* background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px; */
    opacity: 1;
}

img.img-fluid.cta-illustration {
    position: absolute;
    bottom: -110px;
    right: 0;
}

.cta-btn-hover {
    transition: all 0.3s ease;
}

.cta-btn-hover:hover {
    background: #fff !important;
    color: var(--brand-primary) !important;
    transform: scale(1.05);
}

/* --- Testimonials --- */
.hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.testimonials .testimonial-card {
    margin: 10px;
    background-color: #FDFDFD !important;
}

.aos-init.aos-animate .testimonial-card .prof-des {
    flex: 0 0 100%;

}

.phone-img {
    justify-content: end;
}

/* --- Keyframes --- */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(111, 176, 54, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(111, 176, 54, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(111, 176, 54, 0);
    }
}

@keyframes floatAnim {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: floatAnim 4s ease-in-out infinite;
}

/*16-04-2026 about us jeel*/

/* About Us Hero Section */
.our-story-section .section-subtitle {
    font-size: 18px;
    font-weight: 400;
    /* text-transform: capitalize; */
    color: #607C7E;
}

.about-hero-section {
    min-height: 50vh;
    background: url('../images/about-banner.png') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #020407CC;
    z-index: 0;
}

.btn-typ1 {
    border: 1px solid var(--brand-success);
    color: var(--brand-success);
    padding: 5px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-typ1:hover {
    border: 1px solid var(--brand-success);
    background-color: var(--brand-success);
    color: #fff;
}

.about-story-img-wrapper img {
    border-radius: 8px;
}

.check-cont {
    gap: 40px;
    padding: 10px 15px;
    background-color: #F9F9F9;
    border-radius: 8px;
    border: 1px solid #EBEBEB;
}

/* Jobs Banner Section */
.jobs-banner-section {
    background-color: var(--brand-success);
    background-image:
        linear-gradient(rgba(97, 178, 11, 0.9), rgba(97, 178, 11, 0.9)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 100L0 0h100z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Stats Section */
.about-stats-section h3 {
    font-size: 32px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Core Values Section */
.core-values-section {
    background-color: #FAFAFA;
}

.core-values-section .value-container .value-full {
    height: stretch;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    flex: 0 0 20%;
}

.core-values-section .value-container .value-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
}

.about .step-num {
    background-color: #FAFDFE;
    color: #013B8F;
}

.about .step-num:hover {
    background-color: #61B20B;
    color: #fff;
}

/* 
.about .step-content .btn-typ1 {
    border: 0;
    padding: 0;
    color: var(--brand-primary);
} */

.about .step-content p {
    text-align: left;
    font-size: 19px;
    font-weight: 400;
    color: #607C7E;
    max-width: 340px;
}

.about .step-num::after {
    height: 82%;
}

.about .work-step {
    margin-bottom: 25px;
}

.core-values-section .value-container {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 94%;
    margin: 0 auto;
}

.value-card {
    cursor: default;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.about-green .green-bg-pattern {
    background: url('../images/green-about.png') center center/cover no-repeat;
    opacity: 1;
}

.left-cont-botm {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    color: #607C7E;
}

/* Timeline Section */
.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--brand-primary);
}

.timeline-item {
    margin-bottom: 30px;
    padding-left: 15px;
}

.timeline-dot {
    z-index: 2;
    box-shadow: 0 0 0 4px #fff;
}

/* CTA Footer Section */
.about-cta-footer {
    position: relative;
    background-color: var(--brand-success);
}

.wavy-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L48,165.3C96,171,192,181,288,165.3C384,149,480,107,576,96C672,85,768,107,864,122.7C960,139,1056,149,1152,149.3C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom center/cover no-repeat;
    z-index: 1;
}

.hover-scale {
    transition: transform 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/*Contact us*/
.contact-heading {
    font-size: 60px;
    font-weight: 400;
    color: #013B8F;
}


.contact-heading span {
    font-weight: 700;
}

.contact .section-subtitle {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    color: #607C7E;
    text-align: left;
}

.contact .form-group {
    margin-bottom: 20px;
}

.contact .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 500;
    color: #607C7E;
}

.contact .form-group input,
.contact .form-group textarea {
    width: 100%;
    padding: 15px 25px;
    background-color: #FDFDFD;
    border: 1px solid #B8B8B8;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #A2B6B8;
}

.contact .form-group textarea {
    min-height: 150px;
}

.contact .btn-send {
    background-color: var(--brand-success);
    color: white;
    padding: 20px 35px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.contact .btn-send:hover {
    background-color: var(--brand-primary);
    color: #fff !important;
    transform: scale(1.05);
}

/*testiminials*/
.testimonials .slick-list.draggable {
    padding: 0 0 35px 0;
}

.testimonials .slick-dots li button:before {
    content: "";
    border: 6px solid #7caf38;
    border-radius: 50%;
    opacity: 1;
}

.testimonials .slick-dots li.slick-active button:before {
    border-color: #013B8F;
}

/* .loginpage.forcustomer {
    background: #fff;
} */

.fortradie .step-num::after {
    height: 100%;
    z-index: -1;
}

.fortradie .work-step {
    margin-bottom: 10px;
}

/*23-04-2026*/
.testimonials .testimonial-card.p-4.p-md-5.bg-white.hover-shadow.transition-all.h-100 img {
    border-radius: 30px;
}

.testimonials .testimonial-card p {
    padding-top: 10px;
}

.fa.fa-check svg {
    display: none;
}

.for-tradie .login_txt h2 {
    color: var(--brand-success);
}

.for-tradie .login_txt h2 span {
    color: var(--brand-primary);
}

.login_form h4 {
    color: var(--brand-primary);
}

.contact.form-wrapper {
    background: transparent linear-gradient(180deg, #1b3a892b 0%, #FFF 100%) 0% 0% no-repeat padding-box;
}

.proc-ico {
    width: 350px;
    height: 350px;
    margin-right: 50px;
}

.proc-ico img {
    width: 100%;
    height: 100%;
}

.slick-next:before,
.slick-prev:before {
    font-size: 30px !important;
}

.for-customer.core-values-section .value-container .value-full {
    padding: 20px;
    flex: 0 0 24%;
    margin-bottom: 15px;
}

.for-customer.core-values-section .value-container {
    flex-wrap: wrap;
    gap: 15px;
}

.steps-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 20px;
}

.step-single {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s ease;
}

.step-single:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: 20px;
}

.step-single h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--brand-primary);
    margin-top: 30px;
    margin-bottom: 10px;
}

.step-single p {
    color: #555;
    font-size: 18px;
    text-align: left;
    line-height: 1.5;
}

.quote {
    border-left: 7px solid var(--brand-success);
    border-radius: 5px 0 0 5px;
    padding-left: 23px;
}

.modal-dialog {
    margin: 80px auto;
}

.value-icon.text-primary img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.value-card p {
    padding-top: 20px;
    text-align: center;
    font-size: 19px;
    line-height: 1.6;
    color: #607C7E;
}

@media (max-width: 1199px) {
    .left-cont-botm {
        font-size: 14px;
        font-weight: 400;
        text-transform: capitalize;
        color: #607C7E;
    }
}

@media (max-width: 991px) {
    .connection-line {
        display: none !important;
    }

    .core-values-section .value-container {
        width: 100%;
        flex-wrap: wrap;
    }

    .core-values-section .value-container .value-full {
        flex: 0 0 30%;
    }

    .jobcreate section .step img {
        display: none;
    }

    .for-customer.core-values-section .value-container .value-full {
        flex: 0 0 44%;
    }
}

@media screen and (max-width: 768px) {
    .why-choose {
        padding: 80px 0px 80px 0px;
    }

    .new-hero-title {
        font-size: 55px;
    }

    p.new-hero-subtitle {
        font-size: 25px;
    }

    .phone-img {
        justify-content: center;
    }

    .container {
        padding: 0 20px;
    }

    .about .step-content p {
        max-width: 100%;
    }

    .core-values-section .value-container .value-full {
        flex: 0 0 47%;
    }

    .section-title {
        font-size: 35px;
    }

    .step-content h5 {
        font-size: 26px;
    }
}

@media screen and (max-width: 567px) {
    .for-customer.core-values-section .value-container .value-full {
        flex: 0 0 90%;
    }
}

@media screen and (max-width: 425px) {
    .core-values-section .value-container .value-full {
        flex: 0 0 97%;
    }

    .check-cont {
        gap: 2px;
    }
}