@import url('./fonts.css');
@import url('./colors.css');

body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}



.blur-background {
    background: rgba(255, 255, 255, 0.1);
    /* MUST be > 0 */
    backdrop-filter: blur(45px) brightness(1.05);
    -webkit-backdrop-filter: blur(45px) brightness(1.05);
}

.background-image {
    background-image: url('../images/home/Group\ 64@2x.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.platform-banner-img {
    background-image: url('../images/platform/platform-banner.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.solution-background-image {
    background-image: url('../images/solution/solution-background.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.book-a-demo-footer-img {
    background-image: url('../images/home/science.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    width: 100%;
    flex: 1 1 0;
    border-radius: var(--border-radius-33);
}

/*  BORDER RADIUX */
.border-radiux-t-22 {
    border-top-left-radius: var(--border-radius-22);
    border-top-right-radius: var(--border-radius-22);
}

.border-radiux-22 {
    border-radius: var(--border-radius-22);
}

.border-radiux-33 {
    border-radius: var(--border-radius-33);
}


/* CONTAINER */
.custom_container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width:465px) {
    .custom_container {
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

}


/* FONT SIZES */
.font-60 {
    font-size: 60px;
    letter-spacing: -2.64px;
    line-height: 61px;
    font-weight: 700;
}

.font-50 {
    font-size: 50px;
    letter-spacing: 0px;
    line-height: 51px;
    font-weight: 700;
}

.font-40 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1.76px;
    line-height: 48px;
}

.font-32 {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -1.41px;
    font-weight: 700;
}

.font-22 {
    font-size: 22px;
    line-height: 40px;
    letter-spacing: -.97px;
    font-weight: 700;
}

.font-16 {
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
}

.font-15 {
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
}

.font-18 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 700;
}

@media only screen and (max-width:465px) {
    .font-60 {
        font-size: 50px;
        line-height: 55px;
    }

    .font-50 {
        font-size: 40px;
        line-height: 45px;
    }

    .font-40 {
        font-size: 30px;
        line-height: 35px;
    }

    .font-22 {
        font-size: 22px;
        line-height: 40px;
        letter-spacing: -.97px;
        font-weight: 700;
    }

    .font-16 {
        font-size: 14px;
        line-height: 1.125rem;
    }

    .font-15 {
        font-size: 15px;
        line-height: 24px;
        font-weight: 700;
    }

    .font-18 {
        font-size: 1rem;
        line-height: 1.375rem;
    }
}

/* GAPS */

.title_subtile_gap_26 {
    margin-bottom: 1.625rem;
}

/* BUTTON STYLE */

.button_1 {
    border-radius: var(--border-radius-22);
    padding: 10px 34px;
    max-height: 2.8125rem;
}

.button_2 {
    border-radius: var(--border-radius-33);
    padding: 10px 34px;
    max-height: 4rem;
    width: 15rem;
}

.button_3 {
    border-radius: var(--border-radius-15);
    padding: 4px 18px;
}

/* CARD */

.card {
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 40px;
    padding-bottom: 40px;
    border: 1px solid var(--color-easter-blue);
    border-radius: var(--border-radius-22);
    text-align: center;
}

.card_2 {
    padding: 11px 14px 40px 14px;
    border-radius: var(--border-radius-30);
}

.card_2 img {
    border-top-left-radius: var(--border-radius-30);
    border-top-right-radius: var(--border-radius-30);
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.card_3 {
    padding: 11px 14px 40px 14px;
    border-radius: var(--border-radius-12);
    border: .2px solid var(--color-easter-blue);
}

.card_3 img {
    border-top-left-radius: var(--border-radius-12);
    border-top-right-radius: var(--border-radius-12);
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}


/* HEADER START  */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
}

header .logo,
header .header-actions {
    width: 30%;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.menu-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.35s ease;
}

.menu-line:nth-child(1) {
    top: 6px;
}

.menu-line:nth-child(2) {
    top: 14px;
}

.menu-line:nth-child(3) {
    top: 22px;
}

/* Active state */
.menu-open .menu-line:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

.menu-open .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
}

.mobile-menu-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.menu-active .mobile-menu-item {
    opacity: 1;
    transform: translateX(0);
}

.menu-active .mobile-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-active .mobile-menu-item:nth-child(2) {
    transition-delay: 0.18s;
}

.menu-active .mobile-menu-item:nth-child(3) {
    transition-delay: 0.26s;
}

.menu-active .mobile-menu-item:nth-child(4) {
    transition-delay: 0.34s;
}

.menu-active .mobile-menu-item:nth-child(5) {
    transition-delay: 0.42s;
}

.body-menu-open {
    transform: scale(0.97);
    filter: blur(2px);
    transition: all 0.35s ease;
}


/* HEADER END  */

/* HOME step indicater start */
.track {
    background: var(--color-gray-shade-1);
}

.track-progress {
    background: var(--color-tangy-teal);
}

.dot {
    position: absolute;
    left: 0px;
    top: 13px;
    width: 16px;
    height: 16px;
    border-radius: 9999px;
    background: var(--color-gray-shade-1);
    z-index: 10;
}

.dot.active {
    background: var(--color-tangy-teal);
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

#progressBar {
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.title {
    color: var(--color-white-light);
}

.title.active {
    color: var(--color-tangy-teal);
}

.content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.45s ease,
        opacity 0.3s ease;
    margin-top: 8px;
    color: var(--color-white-light);
}

.content.open {
    max-height: 300px;
    /* safe max, increase if content is bigger */
    opacity: 1;
}

/* HOME step indicater end */

/* PRE footer section start */
.check {
    width: 18px;
    height: 18px;
    background-color: rgba(208, 253, 244, 0.1);
    border: .5px solid var(--color-green);
    border-radius: 100%;
    backdrop-filter: blur(30px) brightness(1.05);
    -webkit-backdrop-filter: blur(30px) brightness(1.05);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;

}

/* PRE footer section end */


/* FOOTER START  */
.site-footer {
    position: relative;
    padding: 80px 24px 60px;
    overflow: hidden;
}

/* Top border */
.footer-border {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg,
            transparent,
            #6ffcff,
            #9b8cff,
            transparent);
}

/* Layout */
.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
}

.footer-brand p {
    margin: 16px 0 24px;
    color: var(--color-white-light);
}

.footer-brand small {
    opacity: 0.6;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 28px;
    height: 28px;
    border: 1px solid #7df9ff;
    transform: rotate(15deg);
    opacity: 0.8;
}

.logo-text {
    font-size: 20px;
    font-weight: 500;
}

/* Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-links a {
    display: block;
    color: var(--color-white-light);
    margin-bottom: 14px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(4px);
}

.site-footer {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.site-footer.footer-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-border::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.9),
            transparent);
    transform: translateX(-100%);
    animation: borderSweep 6s infinite ease-in-out;
}

@keyframes borderSweep {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.footer-logo:hover .logo-mark {
    transform: rotate(15deg) scale(1.08);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* FOOTER END  */
/* TAB START  */
.fade-in {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateX(0);
}

.tab-active {
    @apply bg-white text-blue-600 shadow-lg;
}

/* TAB END  */
/* VIDEO PLAYER START  */
.video-banner {
    position: relative;
    width: 60%;
    height: 458px;
    border-radius: 24px;
    overflow: hidden;
    margin: auto;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: white;

    background: #CBCBCB;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn img {
    margin-right: -10px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

@media only screen and (max-width:465px) {
    .video-banner {
        width: 100%;
        height: 250px;
    }

}

/* VIDEO PLAYER END  */



/* FORM START */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.row {
    display: flex;
    gap: 8px;
}

.field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.field.full {
    width: 100%;
}

label {
    font-size: 10px;
    font-weight: 400;
    line-height: 22px;
    color: var(--color-white);
    padding-left: 15px;
}

input,
textarea {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 23px;
    padding: 14px 18px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

textarea {
    border-radius: 23px;
    resize: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}


/* Responsive */
@media (max-width: 640px) {
    .row {
        flex-direction: column;
    }
}

/* FORM END */