/*---------------------------------
*************CUSTOM CSS************
---------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Exo+2:wght@100..900&display=swap');

:root {
    --ai-primary: #ffc500;
    --ai-primary-tow: #c21500;
    --ai-secondary: #28042d;
    --ai-success: #28a745;
    --ai-danger: #dc3545;
    --ai-warning: #ffc107;
    --ai-info: #17a2b8;
    --ai-light: #f8f9fa;
    --ai-white: #ffffff;
    --ai-bg-gray: #ebeced;
    --ai-dark: #343a40;
    --ai-black: #000000;
}

.ai-primary {
    color: #ffc500
}

.ai-primary-two {
    color: #c21500
}

.ai-secondary {
    color: #28042d
}

.ai-bg-primary {
    background-color: #880c9b;
}

.ai-bg-primary-two {
    background-color: #dc3545;
}

.ai-bg-secondary {
    background-color: #28042d;
}


/* Global Body */
body {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    /* regular weight */
    box-sizing: border-box;
    background-color: var(--ai-light);
}

/* Custom link styles */
a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    color: darken(var(--bs-primary), 10%);
    text-decoration: underline;
}

.w-55 {
    width: 55% !important;
}

.w-60 {
    width: 60% !important;
}

.w-70 {
    width: 70% !important;
}

.w-80 {
    width: 80% !important;
}

.section {
    position: relative;
}

/* Custom button style (optional) */
.blurry-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: linear-gradient(88deg, rgb(255 255 255 / 24%) 0%, rgb(89 89 89 / 4%) 100%);
    border-radius: 50px;
    border: 1px solid rgb(106 105 103);
    filter: blur(0px);
    -webkit-filter: blur(0px);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.blurry-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    filter: blur(6px);
    -webkit-filter: blur(6px);
    border-radius: inherit;
    transition: all 0.4s ease-in-out;
}


/* Section Padding */
.section {
    padding: 60px 0;
}

/* Section Headings */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--bs-primary);
    display: block;
    margin: 10px auto 0;
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Utilities (if needed) */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.border-radius {
    border-radius: 0.5rem;
}

/* Title All */

.all-title {
    width: fit-content;
}

.all-title::before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 260px;
    width: 260px;
    opacity: 0.05;
    fill: #23072c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 10v3'/%3E%3Cpath d='M6 6v11'/%3E%3Cpath d='M10 3v18'/%3E%3Cpath d='M14 8v7'/%3E%3Cpath d='M18 5v13'/%3E%3Cpath d='M22 10v3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 6px;
    bottom: -40px;
}

/*---------------------------------
*************CUSTOM CSS************
---------------------------------*/

/*-------------------------------------
*************HEADER SECTION************
-------------------------------------*/
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.header-section .header-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    background-color: rgb(52 18 92 / 35%);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 999;

}

/* Right-to-left animation overlay */
.header-section .header-container::after {
    content: "";
    position: absolute;
    border-radius: 100px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(45deg, #ffffff00, #ffffff94, #ffffff00) 1;
}

.header-section .header-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(69 69 69 / 42%);
    transform: translateX(100%) scale(0.85);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease, scale 0.5s ease;
    z-index: -1;
    border-radius: 16px;
}

.header-section.scrolled .header-container::before {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.header-section .logo span {
    color: var(--ai-primary);
}

.header-section .logo {
    font-weight: bold;
    font-size: 24px;
    color: var(--ai-white);
    transition: color 0.3s ease;
    z-index: 1;
}

.header-section .desktop-nav {
    display: flex;
    gap: 32px;
}

.header-section .desktop-nav a {
    text-decoration: none;
    color: var(--ai-white);
    font-weight: 500;
    font-size: 17px;
    transition: color 0.3s ease;
    z-index: 1;
}

.header-section .desktop-nav a:hover,
.header-section .desktop-nav .active {
    color: var(--ai-primary);
    text-decoration: underline;
    text-decoration-style: dotted;
}

.header-section .button-container {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

/* Hamburger menu */
.header-section .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
}

.header-section .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--ai-black);
    transition: all 0.3s ease;
}

/* Mobile menu */
.header-section .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 999;
}

.header-section .mobile-menu a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 500;
}

.header-section .mobile-menu.open {
    right: 0;
}


/* Scrolled state styles */
.header-section.scrolled .logo {
    color: white;
}

.header-section.scrolled .desktop-nav a {
    color: white;
}

.header-section.scrolled .cta-button {
    background-color: white;
    color: black;
}

.header-section.scrolled .hamburger span {
    background-color: white;
}

/*-------------------------------------
*************HEADER SECTION************
-------------------------------------*/

/*-----------------------------------
*************HERO SECTION************
-----------------------------------*/
.hero-section {
    min-height: 80%;
    max-height: 970px;
    /* background-image: url('../images/hero.mp4'); */
    /* background-image: linear-gradient(90deg, #28042d, #480452); */
    background-color: #28042dd4;
}

.hero-section .bar {
    background: #ffffff;
}

.hero-items {
    width: 90%;
    margin: auto;
    margin-top: 80px;
}

.hero-items h2 {
    font-size: 7rem;
}

.hero-section .gradient-btn {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    border: none;
    color: white;
}

.hero-section .voice-all {
    border-radius: 1rem;
    display: flex;
    align-items: self-end;
    position: relative;
    justify-content: center;
    overflow: hidden;
}

.hero-section .voice-all:before {
    content: '';
    position: absolute;
    background-image: linear-gradient(180deg, #af2a9b00, #d218d0ed, #990ffa);
    height: 67px;
    width: 100%;
    bottom: 0;
}

.hero-section .voic-m {
    display: flex;
    align-items: center;
    z-index: 1;
    line-height: 1.1;
    margin-bottom: 14px;
}

.hero-section .blurryBtn .voice-toggle svg,
.hero-section .voic-m svg {
    width: 35px;
    height: 35px;
    padding: 9px;
    background: #00000075;
    border-radius: 30px;
    fill: #fff;
}

.hero-section .blurryBtn .voice-toggle {
    padding: 1rem 1.5rem;
}

.hero-section .blurryBtn .voice-toggle svg {
    padding: 4px;
    background: unset;
    border-radius: 0;
}

.hero-section .voice-all a {
    margin-right: 9px;
}

.hero-section .text-voice p {
    font-size: 14px;
}

.hero-section .text-voice small {
    font-size: 12px;
}


.hero-section .voice-card {
    background: linear-gradient(135deg, #d946ef, #9333ea);
    border-radius: 1rem;
    /* padding: 20px; */
    text-align: center;
    color: white;
}


.hero-section .tag {
    border-radius: .625rem;
    -webkit-backdrop-filter: blur(5.5px);
    backdrop-filter: blur(5.5px);
    color: white;
    background-color: #ffffff0d;
    padding: .5rem .875rem;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    cursor: pointer;
    width: 100%;
}


.hero-section .voice-card {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.hero-section .isotope-hidden {
    pointer-events: none;
    opacity: 0;
    transform: scale(0.95);
}

.hero-section .tag.active {
    background-image: linear-gradient(90deg, var(--ai-primary), var(--ai-primary-tow));
    color: #fff;
}

.hero-section .blurry-button {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: 0px;
    background-color: #ff141433;
    background-image: linear-gradient(90deg, var(--ai-primary), var(--ai-primary-tow));
    border: 1px solid #c11be300;
    border-style: solid none;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px #ee217a66;
}

.hero-section #cText div {
    text-decoration: underline;
}

.hero-section #cText div,
.hero-section #vText div,
.hero-section #eText div {
    display: inline-block;
}

.hero-section .blurryBtn {
    background-color: var(--ai-secondary);
    background-image: none;
    border-style: solid;
    border-color: var(--ai-primary-tow);
    box-shadow: 0 8px 24px #c3150461;
}

.hero-section .hero-boxss {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: grid;
    border-radius: 1rem;
}

.hero-section .hero-all-content {
    z-index: 1;
    padding: 4rem 3rem 2.5rem;
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    border-radius: 4.5rem;
    background-image: none;
    flex-flow: column;
    display: flex;
    position: relative;
    margin: auto;
    margin-top: -34px;
    width: 80%;
    overflow: hidden;
}

.hero-section .hero-all-content:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 4.5rem;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-image: linear-gradient(#28042d, #42208ae8);
    border: 2px solid #ffffff14;
    border-top: 2px #ffffff0a;
    border-bottom-style: none;
    width: 100%;
    height: 100%;
    box-shadow: 20px 199px 57px #26176d00,
        20px 127px 52px #26176d03,
        13px 72px 44px #26176d0d,
        6px 32px 32px #26176d17,
        1px 8px 18px #26176d1a;
}

.hero-section .playback-box {
    padding: 1rem;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    border-radius: 1.5rem;
    color: #8e70c0;
    white-space: nowrap;
    background-image: radial-gradient(circle, #d7c6fb0d, #d7cbef0d);
    border: .5px solid #e2d4ff33;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    box-shadow: 20px 40px 200px #0000003d;
}

.hero-section .playback-box p {
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* IE/Edge */
}

.hero-section .playback-box p::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.hero-section .playback-box p {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 6px;
}

.hero-section .word {
    transition: all 0.3s ease;
    color: gray;
}

.hero-section .word.bg-warning {
    background-color: var(--ai-primary);
    color: white;
    border-radius: 4px;
}

.scroll-text {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.scroll-text span {
    display: inline-block;
    margin-right: 4px;
}

.text-danger {
    color: #dc3545;
}

.hero-section .playback-box .blurry-button.rounded-circle {
    height: 4rem;
    width: 20rem;
    padding: 0;
    justify-content: center;
    overflow: hidden;
}

.hero-section video {
    position: absolute;
    top: 0;
    margin-top: -110px;
    z-index: -1;
}

/* Play Pause */
.hero-section .button {
    box-sizing: border-box;
    width: 0;
    height: 20px;
    border-color: transparent transparent transparent #ffffff;
    transition: 100ms all ease;
    cursor: pointer;
    border-style: solid;
    border-width: 10px 0 10px 19px;
}

.hero-section .button.paused {
    border-style: double;
    border-width: 0px 0 0px 19px;
}

.blurry-button.rounded-circle #rotateIcon {
    animation: pulse-wave 1s infinite ease-in-out;
    transform-origin: center;
}

.hero-section #bars {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    overflow: hidden;
    position: relative;
}

/*-----------------------------------
*************HERO SECTION************
-----------------------------------*/

/*------------------------------------------------
*************FEATURE PLATFORMS SECTION************
------------------------------------------------*/
.feature-platforms-section {
    margin-top: 150px;
}

.feature-platforms-section .feature-desc {
    max-width: 450px;
    font-size: 22px;
}

.feature-platforms-section .feature-video-wrapper {
    background: var(--ai-secondary);
    background-image: linear-gradient(#28042d, #42208ae8);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 500px;
}

.bars {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    overflow: hidden;
    position: relative;
    margin: 0 20px;
    top: -10px;
}

.bar {
    background: #000000;
    height: 3px;
    width: 2px;
    margin: 0 1px;
    border-radius: 1px;
    animation: sounds 0ms -800ms linear infinite alternate;
}

@keyframes sounds {
    0% {
        opacity: 0.35;
        height: 3px;
    }

    100% {
        opacity: 1;
        height: 35px;
    }
}

/* Smooth random timing for natural wave feel */
.bar:nth-child(1) {
    animation-duration: 520ms;
}

.bar:nth-child(2) {
    animation-duration: 560ms;
}

.bar:nth-child(3) {
    animation-duration: 500ms;
}

.bar:nth-child(4) {
    animation-duration: 540ms;
}

.bar:nth-child(5) {
    animation-duration: 280ms;
}

.bar:nth-child(6) {
    animation-duration: 530ms;
}

.bar:nth-child(7) {
    animation-duration: 550ms;
}

.bar:nth-child(8) {
    animation-duration: 510ms;
}

.bar:nth-child(9) {
    animation-duration: 575ms;
}

.bar:nth-child(10) {
    animation-duration: 540ms;
}

.feature-platforms-section .filter-buttons svg {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.feature-platforms-section .filter-buttons {
    cursor: pointer;
}

.feature-platforms-section .filter-buttons span:before {
    content: '';
    position: absolute;
    border-top: 2px solid var(--ai-danger);
    width: 0;
    top: -1px;
    transition: ease-in-out .4s;
}

.feature-platforms-section .filter-buttons span:hover:before,
.feature-platforms-section .filter-buttons span.active:before {
    width: 100%;
    transition: ease-in-out .4s;
}

/*------------------------------------------------
*************FEATURE PLATFORMS SECTION************
------------------------------------------------*/

/*--------------------------------------
*************SPONSOR SECTION************
--------------------------------------*/
.sponsor-section {
    padding: 100px 0;
    overflow: hidden;
    background: #f9f9f9;
}

.carousel-container {
    white-space: nowrap;
    overflow: hidden;
    padding: 30px 0;
}

.slider-track {
    display: flex;
    gap: 60px;
    will-change: transform;
    min-width: 200%;
    /* Ensures enough width for scrolling */
    margin-left: -100rem;
}

.slider-track .item {
    flex: 0 0 auto;
    position: relative;
    width: 200px;
    height: 130px;
    display: flex;
    justify-content: center;
    padding: 30px;
    cursor: pointer;
    border: 1px solid #ffffff;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: ease-in-out .3s;
}

.slider-track .item:hover {
    scale: 1.2;
    transition: ease-in-out .5s;
}

.slider-track .item img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-filter: drop-shadow(5px 4px 3px #52525255);
}

/*--------------------------------------
*************SPONSOR SECTION************
--------------------------------------*/

/*--------------------------------------
*************FEATURES SECTION************
--------------------------------------*/
.feature-section .hover-image {
    position: fixed;
    top: 40px;
    left: 0;
    width: 30rem;
    height: auto;
    z-index: -1;
    aspect-ratio: 0.9;
    transform-origin: center;
    transform: translate(-50%, -50%);
    background: gray;
    object-fit: cover;
    pointer-events: none;
}

.feature-section .list-item p {
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--ai-secondary);
}

.feature-section .list-item h2 {
    color: var(--ai-primary);
    font-family: "Antonio", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 10rem;
    letter-spacing: -5px;
    font-weight: 800;
    margin-bottom: 30px;

    text-transform: uppercase;
    background: linear-gradient(to right, var(--ai-primary) 0%, var(--ai-primary-tow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 9vw;
}

.textRevealWrapper {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(6px);
    transition: all 0.4s ease-out;
    will-change: transform, opacity, filter;
}

/*--------------------------------------
*************FEATURES SECTION************
--------------------------------------*/

/*---------------------------------------
*************USE CASE SECTION************
---------------------------------------*/
.cases-section .case-box {
    width: 20rem;
    padding: 10px;
    height: 12rem;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cases-section .case-text h1 {
    font-size: 5rem;
    font-weight: 700;
    font-family: "Antonio", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: -2px;
}

.cases-section .case-box svg {
    width: 100px;
    height: 100px;
    display: inline-block;
}

.case-text h1 {
    overflow: hidden;
    word-break: keep-all;
    white-space: normal;
}

.case-text h1 span {
    display: inline-block;
}

/*---------------------------------------
*************USE CASE SECTION************
---------------------------------------*/

/*----------------------------------------
*************HOW WORKS SECTION************
----------------------------------------*/
.how-divider {
    background-color: var(--ai-secondary);
    width: 1px;
    height: 24px;
    margin-top: 6px;
    position: absolute;
    top: 116%;
    left: 13px;
}

.how-icon a {
    color: var(--ai-dark);
}

.how-icon a.active,
.how-icon a:hover {
    color: var(--ai-primary-tow);
    text-decoration: none;
}

.voice-collection-icon-wrapper::before,
.how-icon:before {
    content: '';
    position: absolute;
    background-image: linear-gradient(90deg, var(--ai-primary), var(--ai-primary-tow));
    filter: blur(8px);
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: ease-in-out .3s;
    left: 13px;
    bottom: 0;
}

.voice-collection-icon-wrapper::before {
    opacity: 0.7;
    width: 25px;
    height: 25px;
}


.how-icon:hover:before {
    opacity: 0.7;
    transition: ease-in-out .3s;
}

.how-icon::before {
    opacity: 0;
    transition: ease-in-out 0.3s;
  }
  
  .how-icon.icon-active::before {
    opacity: 0.7;
  }

.voice-p {
    opacity: .6;
    font-size: .875rem;
    line-height: 1.375rem;
}


.voice-collection-item {
    padding: 2rem;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    border-radius: 1.5rem;
    background-color: var(--ai-bg-gray);
    border: 1px solid #66666614;
    flex-flow: column;
    display: flex;
}

.sticky-sidebar {
    position: sticky;
    top: 140px;
}

.scrollspy-content {
    /* height: 500px; */
    overflow-y: auto;
    padding-left: 20px;
}
/*----------------------------------------
*************HOW WORKS SECTION************
----------------------------------------*/