html {
    scroll-behavior: smooth;
}
.top {
    background-image: url("landingassets/petscan-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    color: white;
}
.mid{
    background-color: #E7E8E9;
}
.bot{
    background-image: url(landingassets/page2.png);
    color: #111022;
    min-height: 100vh;
}
.custom-card{
    background-image: url(/landingassets/Web-Background.jpg);
    color:#111022;
    border-top: #111022 5px solid;
    border-bottom: #111022 5px solid;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

/* TAGLINE TEXT */
.responsive-heading {
    color: #D7EAF1;
    font-size: 2.5rem;
    font-weight: bold;
}
.responsive-heading2{
    color: #111022;
    font-size: 2.5rem;
    font-weight: bold;
}

.container-fluid {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-image {
    width: 20%;
    height: auto;
}

.custom-button{
    background-color: rgba(17, 16, 34, 0.75);
    color: #D7EAF1;
    font-weight: bold;
    border: white 2px solid;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease; 
}

.custom-button:hover {
    background-color: rgba(255, 255, 255, 0.85); 
    color: #111022; 
    transform: translateY(-5px); 
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2); 
}

.custom-button:active {
    transform: translateY(2px); 
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.15); 
    background-color: rgba(17, 16, 34, 0.9); 
}


/* Responsive Custom */
@media (min-width: 576px) {
    .responsive-heading,.responsive-heading2{
        font-size: 3rem;
    }
    .custom-image{
        width:65%;
        height: auto;
    }
}

@media (min-width: 768px) {
    .responsive-heading,.responsive-heading2{
        font-size: 3.5rem;
    }
    .custom-image{
        width:40%;
        height: auto;
    }
}

@media (min-width: 992px) {
    .responsive-heading,.responsive-heading2{
        font-size: 4rem;
    }
    .custom-image{
        width:35%;
        height: auto;
    }
}

@media (min-width: 1200px) {
    .responsive-heading,.responsive-heading2{
        font-size: 4.5rem;
    }
    .custom-image{
        width:25%;
        height: auto;
    }
}

/* Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        scale: 0.5;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}

.block {
    animation: fadeIn ease-in-out;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
.top-animation {
    animation: fadeIn 2s ease-in-out;
}

/* Hover Animation */
.side:hover {
    transform: translateX(30px);
    transition: transform 0.5s;
}
.point:hover{
    transform: scale(1.05);
    transition: transform 0.5s;
}
