
body {
    background-image: url("https://ingramnz.com/cto/content/images/home/hero-bg.jpg");
    background-repeat: no-repeat;
}

.home-body {
    /*background-image: url("https://ingramnz.com/cto/content/images/home/hero-bg.jpg");*/
    /* Yun update 10th July */
    background-size: 200%;
    /* Yun update 10th July */
    background-position: top;
    background-repeat: no-repeat;
}

.home-hero {
    padding-top: 30px;
    padding-bottom: 30px;
}

.home-hero__hero {
    padding-top: 40px;
    padding-bottom: 20px;
}

    /* Yun update 10th July */
    .home-hero__hero h1 {
        margin-top: 0 !important;
    }

    /* Yun update 10th July */
    .home-hero__hero img {
        width: 100%;
        padding-bottom: 30px;
    }

@media (min-width: 992px) {
    .home-body section {
        text-align: left;
    }

    .home-hero__hero {
        text-align: left;
        padding-top: 40px;
        padding-bottom: 50px;
    }

        .home-hero__hero .headline {
            padding-right: 30px;
        }
}

.card {
    transition: transform 500ms ease-in-out, box-shadow 300ms ease, filter 300ms ease;
    overflow: hidden; /* Prevents the box-shadow from overflowing */
}

    .card:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        filter: brightness(1.01) contrast(1.05);
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        transition: opacity 300ms ease;
        opacity: 0;
    }

    .card:hover::before {
        opacity: 1;
    }

.hero-mac {
    animation: spin 70s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg) scale(0.7);
    }

    50% {
        transform: rotate(180deg) scale(0.85);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.tpp-main {
    transition: transform 500ms ease-in-out
}

    .tpp-main:hover {
        transform: scale(1.03);
    }

/* Basic Section Styling */
.scroll-to-appear-section {
    opacity: 0; /* Initially invisible */
    transform: translateY(50px); /* Slightly translated to create smooth movement */
    transition: opacity 1s ease, transform 1s ease; /* Smooth transition */
}

    /* Trigger animation when section is in view */
    .scroll-to-appear-section.appear {
        opacity: 1;
        transform: translateY(0); /* Move to normal position */
    }

/* Headline Animation */
.headline-title {
    opacity: 0;
    transform: translateX(-50px); /* Initially moved off-screen to the left */
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-to-appear-section.appear .headline-title {
    opacity: 1;
    transform: translateX(0); /* Slide into position */
   
 background-image: linear-gradient(to right, #0090f7, #ba62fc, #f2416b);
    -webkit-background-clip: text;
    /* background-clip: text; */
    -webkit-text-fill-color: transparent;
}

/* Image Animation */
.hero-image {
    opacity: 0;
    transform: scale(0.8); /* Initially scaled down */
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-to-appear-section.appear .hero-image {
    opacity: 1;
    transform: scale(1); /* Scale to original size */
}

/* Paragraph Animation */
.headline {
    opacity: 0;
    transform: translateY(20px); /* Start slightly translated */
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-to-appear-section.appear .headline {
    opacity: 1;
    transform: translateY(0); /* Move to normal position */
}

/* Button Animation */
.btn-primary {
    opacity: 0;
    transform: translateY(20px); /* Start with slight translation */
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-to-appear-section.appear .btn-primary {
    opacity: 1;
    transform: translateY(0); /* Bring to normal position */
}


/*# sourceMappingURL=home.css.map */
