
/* Hero CTA Button Container */
#hero-cta-container {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 30;
}

/* Responsive Design for Hero Slider */
@media (max-width: 768px) {
    #hero-slider-dots {
        bottom: 100px;
    }
    
    #hero-cta-container {
        bottom: 20px;
        right: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    #hero-slider-dots {
        bottom: 120px;
        gap: 8px;
    }
    
    #hero-cta-container {
        bottom: 16px;
        right: 16px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* ===== BUTTON STYLES ===== */

/* Primary CTA Button - Teal Background */
.primary-cta-btn {
  
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    background-color: #009688; /* accent-teal */
    border: 2px solid #009688; /* accent-cyan */
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Iosevka', 'Space Mono', 'Courier New', monospace;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FEF9F4; /* neutral-cream */
    cursor: pointer;
    transition: all 0.5s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.2);

}

/* Show primary CTA button only on desktop */
@media (min-width: 1024px) {
    .primary-cta-btn {
        display: flex;
    }
}

.primary-cta-btn:hover #bar1 {
    animation: bar1Anim 0.6s ease-in-out forwards;
}

.primary-cta-btn:hover #bar2 {
    animation: bar2Anim 0.6s ease-in-out forwards;
}

.primary-cta-btn:hover #bar3 {
    animation: bar3Anim 0.6s ease-in-out forwards;
}

.primary-cta-btn:hover {
    background-color: #13001a; /* accent-teal with 80% opacity */
    border: 2px solid #009688;
   
}


.primary-cta-btn .eq-icon {
    width: 10px;
    height: 14px;
    transition: transform 0.3s ease;
    position: relative;
    top: -1px;
}



.speech-truth-button{
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #abebf0;
    backdrop-filter: blur(0px);
}
/* Secondary CTA Button - Purple Background */
.secondary-cta-btn {
    width: 265px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #5E376E; /* primary-light */
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Iosevka', 'Space Mono', 'Courier New', monospace;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FEF9F4; /* neutral-cream */
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.secondary-cta-btn:hover #bar1 {
    animation: bar1Anim 0.6s ease-in-out forwards;
}

.secondary-cta-btn:hover #bar2 {
    animation: bar2Anim 0.6s ease-in-out forwards;
}

.secondary-cta-btn:hover #bar3 {
    animation: bar3Anim 0.6s ease-in-out forwards;
}

.secondary-cta-btn:hover {
    background-color: rgba(94, 55, 110, 0.8); /* primary-light with 80% opacity */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(94, 55, 110, 0.2);
}

.secondary-cta-btn:active {
    transform: translateY(0);
}

.secondary-cta-btn .eq-icon {
    width: 10px;
    height: 14px;
    transition: transform 0.3s ease;
    
}

/* Hero CTA Button - Third Button Type (Based on Figma) */
.hero-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    background-color: #00000000; /* accent-teal */
    border: 2px solid #ABEBF0; /* accent-teal */
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Iosevka', 'Space Mono', 'Courier New', monospace;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FEF9F4; /* neutral-cream */
    cursor: pointer;
    transition: all 0.5s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.2);
}

.hero-cta-btn:hover #bar1 {
    animation: bar1Anim 0.6s ease-in-out forwards;
}

.hero-cta-btn:hover #bar2 {
    animation: bar2Anim 0.6s ease-in-out forwards;
}

.hero-cta-btn:hover #bar3 {
    animation: bar3Anim 0.6s ease-in-out forwards;
}

.hero-cta-btn:hover {
    background-color: #13001a16; /* primary-dark */
    border: 2px solid #C2A5CF; /* accent-teal */
}

.hero-cta-btn:active {
    transform: translateY(0);
}

.hero-cta-btn .eq-icon {
    width: 10px;
    height: 14px;
    transition: transform 0.3s ease;
}



.third-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    background-color: #00000000; /* accent-teal */
    border: 2px solid #000; /* accent-teal */
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Iosevka', 'Space Mono', 'Courier New', monospace;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #000; /* neutral-cream */
    cursor: pointer;
    transition: all 0.5s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
    
}

.third-cta-btn:hover #bar1 {
    animation: bar1Anim 0.6s ease-in-out forwards;
}

.third-cta-btn:hover #bar2 {
    animation: bar2Anim 0.6s ease-in-out forwards;
}

.third-cta-btn:hover #bar3 {
    animation: bar3Anim 0.6s ease-in-out forwards;
}

.third-cta-btn:hover {
   
    border: 2px solid #C2A5CF; /* accent-teal */
}

.third-cta-btn:active {
    transform: translateY(0);
}

.third-cta-btn .eq-icon {
    width: 10px;
    height: 14px;
    transition: transform 0.3s ease;
}



/* ===== ANIMATIONS ===== */

/* Animate bars on hover */
.ani_music1_group:hover #bar1 {
    animation: bar1Anim 0.6s ease-in-out forwards;
}

.ani_music1_group:hover #bar2 {
    animation: bar2Anim 0.6s ease-in-out forwards;
}

.ani_music1_group:hover #bar3 {
    animation: bar3Anim 0.6s ease-in-out forwards;
}

/* Keyframes: animate to hover state */
@keyframes bar1Anim {
    0% {
        height: 14px;
        fill: #13001A;
    }

    50% {
        height: 8px;
        fill: #FEF9F4;
    }

    100% {
        height: 14px;
        fill: #FEF9F4;
    }
}

@keyframes bar2Anim {
    0% {
        y: 2;
        height: 10px;
        fill: #13001A;
    }

    50% {
        y: 6;
        height: 6px;
        fill: #FEF9F4;
    }

    100% {
        y: 2;
        height: 10px;
        fill: #FEF9F4;
    }
}

@keyframes bar3Anim {
    0% {
        y: 5;
        height: 4px;
        fill: #13001A;
    }

    50% {
        y: 7;
        height: 2px;
        fill: #FEF9F4;
    }

    100% {
        y: 5;
        height: 4px;
        fill: #FEF9F4;
    }
}

.ani_music2_group:hover #bar1 {
    animation: bar1Anim_2 0.6s ease-in-out forwards;
}

.ani_music2_group:hover #bar2 {
    animation: bar2Anim_2 0.6s ease-in-out forwards;
}

.ani_music2_group:hover #bar3 {
    animation: bar3Anim_2 0.6s ease-in-out forwards;
}

/* Keyframes: animate to hover state */
@keyframes bar1Anim_2 {
    0% {
        height: 14px;
        fill: #C2A5CF;
    }

    50% {
        height: 8px;
        fill: #C2A5CF;
    }

    100% {
        height: 14px;
        fill: #C2A5CF;
    }
}

@keyframes bar2Anim_2 {
    0% {
        y: 2;
        height: 10px;
        fill: #C2A5CF;
    }

    50% {
        y: 6;
        height: 6px;
        fill: #C2A5CF;
    }

    100% {
        y: 2;
        height: 10px;
        fill: #C2A5CF;
    }
}

@keyframes bar3Anim_2 {
    0% {
        y: 5;
        height: 4px;
        fill: #C2A5CF;
    }

    50% {
        y: 7;
        height: 2px;
        fill: #C2A5CF;
    }

    100% {
        y: 5;
        height: 4px;
        fill: #C2A5CF;
    }
}

.ani_music3_group:hover #bar1 {
    animation: bar1Anim_3 0.6s ease-in-out forwards;
}

.ani_music3_group:hover #bar2 {
    animation: bar2Anim_3 0.6s ease-in-out forwards;
}

.ani_music3_group:hover #bar3 {
    animation: bar3Anim_3 0.6s ease-in-out forwards;
}

/* Keyframes: animate to hover state */
@keyframes bar1Anim_3 {
    0% {
        height: 14px;
        fill: #000;
    }

    50% {
        height: 8px;
        fill: #000;
    }

    100% {
        height: 14px;
        fill: #000;
        ;
    }
}

@keyframes bar2Anim_3 {
    0% {
        y: 2;
        height: 10px;
        fill: #000;
    }

    50% {
        y: 6;
        height: 6px;
        fill: #000;
    }

    100% {
        y: 2;
        height: 10px;
        fill: #000;
    }
}

@keyframes bar3Anim_3 {
    0% {
        y: 5;
        height: 4px;
        fill: #000;
    }

    50% {
        y: 7;
        height: 2px;
        fill: #000;
    }

    100% {
        y: 5;
        height: 4px;
        fill: #000;
    }
}

/* ====== BUTTON STYLES ====== */

/* Tab Button Styles */
.tab-button {
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FEF9F4;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.tab-button.active {
    background: #5E376E !important;
    color: #FEF9F4 !important;
    border-color: #5E376E !important;
}

.tab-button:not(.active):hover {
    background: rgba(94, 55, 110, 0.1);
    border-color: #009688;
}

/* General Button Styles */
button {
    position: relative;
    overflow: hidden;
}

button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

button:active::after {
    animation: ripple 0.6s ease-out;
}

/* Cursor Effects */
@media (hover: hover) {
    a, button {
        cursor: pointer;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    button {
        border: 2px solid currentColor;
    }
}

/* Mobile Button Styles */
@media (max-width: 768px) {
    /* Hero CTA Button */
    #hero-cta-button { 
        width: fit-content !important; 
        justify-content: flex-start !important; 
        padding: 14px 28px !important; 
    }

    /* Voice Intelligence Tab Buttons */
    #voice-intelligence-tabs .tab-button { 
        width: 100% !important; 
        padding: 12px 16px; 
        border-radius: 10px; 
        text-align: left;
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Pragyaavi CTA Button */
    #pragyaavi-cta-button {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 7px 15px !important;
        background-color: transparent !important;
        border: 1px solid #C2A5CF !important;
        border-radius: 30px !important;
        color: #C2A5CF !important;
        font-family: 'Iosevka', monospace !important;
        font-weight: 400 !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
        letter-spacing: 0.04em !important;
        text-transform: uppercase !important;
        justify-content: flex-start !important;
    }
    
    #pragyaavi-cta-button .eq-icon { 
        width: 10px; 
        height: 14px; 
    }
    
    #pragyaavi-cta-button .eq-icon #bar1,
    #pragyaavi-cta-button .eq-icon #bar2,
    #pragyaavi-cta-button .eq-icon #bar3 { 
        fill: #C2A5CF !important; 
    }
    
    #pragyaavi-cta-button:hover { 
        background-color: rgba(19,0,26,0.09) !important; 
        border-color: #C2A5CF !important; 
    }

    /* CTA Button */
    #cta-button { 
        width: auto !important; 
        justify-content: flex-start !important; 
        flex-shrink: 0;
        padding: 20px !important;
        height: 45px; 
    }

    /* All CTA Button Types */
    .hero-cta-btn,
    .primary-cta-btn,
    .secondary-cta-btn,
    .third-cta-btn {
        justify-content: center !important;
        padding: 14px 24px !important;
        font-size: 14px !important;
    }
}

/* Tablet Button Styles */
@media (max-width: 1024px) {
    #hero-cta-button {
        /* Add tablet-specific hero button styles here */
    }
    
    #pragyaavi-cta-button {
        /* Add tablet-specific CTA button styles here */
    }
    
    #cta-button {
        /* Add tablet-specific button styles here */
    }
    
    .tab-button {
        /* Add tablet-specific tab button styles here */
    }
    
    .tab-button.active {
        /* Add tablet-specific active tab styles here */
    }
}
