html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.report-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.report {
    position: absolute;
    inset: 0;
    /* shortcut for top:0; bottom:0; left:0; right:0; */
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    /* prevents whitespace gap issues */
}

::-webkit-scrollbar {
    display: none;
}

#loading-animation,
#done-animation {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#terminal-frame {
    width: 100%;
    height: 100%;
    border: none;
    transition: filter 0.3s ease;
    position: relative;
    z-index: 1;
}

.blur {
    filter: blur(5px);
}

.notification {
    position: fixed;


    transform: translateX(-50%) translateY(-150%);
    padding: 12px 18px;
    border-radius: 14px;
    top: 80px;
    left: 50%;
    /* TEXT */
    color: #fff;
    font-size: 14px;
    font-weight: 500;

    /* ✅ Frosted Glass Blur */
    background: rgba(0, 0, 0, 0.45);
    /* translucent layer */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    /* Shadow for floating effect */
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);

    opacity: 0;
    transition: transform .35s cubic-bezier(.2, .9, .3, 1), opacity .35s;
    z-index: 9999;
    display: inline-block;
    max-width: calc(100% - 40px);
}

/* Visible/Show state */
.notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.notFound {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 10px;


}

.serviceCard {}

.scale-up-center {
    -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.serviceCard:hover {
    -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.projSection {
    background-image: url('https://explore.hubtel.com/wp-content/themes/explorehubtel/images/bulk-messaging/bg-green.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
}

.cardShadow {
    box-shadow: rgba(17, 12, 46, 0.15) 0 48px 100px 0;
    transition: 0.3s ease-in-out;
}

.cardShadow:hover {
    transition: 0.5s ease-in-out;
    box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px;
}

.stickyNav {
    position: sticky;
    top: 0;
    z-index: 10;
}

.fixed-size-image {

    height: 30px;


}
