@import url('./reset.css');
@import url('./utility.css');
@import url('./component.css');
@import url('./header.css');
@import url('./footer.css');
/* @import url('./index.css'); */
@import url('./showcase-slider.css');
@import url('./font.css');
@import url('./_button.css');
/* @import url('./responsive.css'); */

.companyinfo {
    display: none;
}

.whtsappshared {
    left: 10px;
    right: unset !important;
}

.whtsappshared a {
    width: 40px !important;
    height: 40px !important;
    display: inline-block;
    vertical-align: middle;
}

.whtsappshared a img {
    height: 100% !important;
    width: 100% !important;
}

#scrollTopBtn {
    position: fixed;
    z-index: 99;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--color-sky-500);
    color: var(--color-neutral-900);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    animation: floatY 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

#scrollTopBtn>svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;

}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.acces-btn {
    position: relative;
    z-index: 9;
    background-color: var(--primary-dark);
}

.lang-wrapper.lang-wrapper {
    position: relative;
    z-index: 9;
}

/* Keep AOS-tagged content visible when AOS fails to load/init. */
html.aos-fallback [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.section-pad {
    position: relative;
    background: var(--color-neutral-0);
    padding: var(--space-20) 0;
}

.section-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.section-blobs .section-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.blob-1 {
    width: min(60vw, 520px);
    height: min(60vw, 520px);
    right: -15%;
    top: -20%;
    background: radial-gradient(circle, rgba(18, 33, 47, 0.4) 0%, transparent 70%);
    background-color: rgba(94, 129, 172, 0.5);
    background: radial-gradient(circle, rgba(18, 33, 47, 0.35) 0%, transparent 70%);
    background-color: var(--color-neutral-500) !important;
}

.blob-2 {
    width: min(50vw, 400px);
    height: min(50vw, 400px);
    left: -10%;
    bottom: -15%;
    background: radial-gradient(circle, rgba(18, 33, 47, 0.35) 0%, transparent 70%);
    background-color: rgba(61, 90, 128, 0.8);
    background: radial-gradient(circle, rgba(18, 33, 47, 0.35) 0%, transparent 70%);
    background-color: var(--color-neutral-400) !important;
}

.blob-3 {
    width: min(50vw, 280px);
    height: min(50vw, 280px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(229, 99, 99, 0.12) 0%, transparent 70%);
    background-color: rgba(229, 99, 99, 0.3);
}

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #FDF6F0; */
    /* background: radial-gradient(circle at top left, rgba(229, 99, 99, 0.5) 0, transparent 50%), radial-gradient(circle at bottom right, rgba(61, 90, 128, 0.6) 0, transparent 55%), var(--color-neutral-0, #ffffff); */
    overflow: hidden;
    padding: var(--space-20) var(--space-4);
    background-color: var(--color-sky-100);
}



/* Noise Texture Overlay */
/* .page-hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("../img/themeLite-page-banner.png");
    opacity: 0.5;
    pointer-events: none;
    background-attachment: fixed;
    background-size: contain;
    background-repeat: no-repeat;
} */

/* Hero Content */
.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    font-size: var(--text-4xl);
    font-weight: var(--font-semibold);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-dark);
    background-color: var(--color-neutral-900);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(inset 2px 2px 4px rgba(0, 0, 0, 1));
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.15);
}

.page-hero-label {
    background-image: linear-gradient(to bottom, var(--color-neutral-50), var(--color-neutral-0));
}

.page-hero-title {
    font-weight: var(--font-bold);
    color: var(--color-neutral-900);
    line-height: 1.1;
    margin: 0 0 var(--space-2);
    text-align: center;
}

.page-hero-subtitle {
    font-family: var(--font-family-display);
    font-size: var(--text-lg);
    font-weight: var(--font-regular);
    color: var(--color-neutral-600);
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .title-main__char {
        will-change: auto;
    }
}

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

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

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