/* Voxa Custom Styles - Professional Hero and About Sections */

/* New Voxa Professional Hero Section */
.voxa-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0118 0%, #16051e 100%);
}

.voxa-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.voxa-hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(192, 132, 252, 0.15) 0%, transparent 50%);
}

.voxa-hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.voxa-hero-section .container {
    position: relative;
    z-index: 2;
}

.voxa-hero-content {
    padding: 100px 0;
}

/* Index page hero - account for absolute positioned header */
#home.voxa-hero-section .voxa-hero-content {
    padding: 85px 0 100px 0 !important;
}

/* RTL (Arabic) version - different spacing */
[dir="rtl"] #home.voxa-hero-section .voxa-hero-content {
    padding: 60px 0 100px 0 !important;
}

.voxa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #9333ea;
    transition: all 0.3s ease;
}

.voxa-hero-badge:hover {
    background: rgba(147, 51, 234, 0.2);
    transform: translateY(-2px);
    border-color: rgba(192, 132, 252, 0.5);
}

.voxa-badge-icon {
    font-size: 18px;
    color: #9333ea;
}

.voxa-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.voxa-text-gradient {
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.voxa-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
}

.voxa-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.voxa-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.voxa-feature-item i {
    color: #c084fc;
    font-size: 16px;
}

.voxa-hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.voxa-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.voxa-btn-primary:hover {
    background: transparent;
    color: #c084fc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
    border: 2px solid #c084fc;
}

.voxa-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.voxa-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

.voxa-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.voxa-stat-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    visibility: visible !important;
}

.voxa-stat-item h3 {
    font-size: 25px !important;
    font-weight: 700 !important;
    color: #c084fc !important;
    margin-bottom: 5px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.2 !important;
    -webkit-text-fill-color: #c084fc !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.voxa-stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.voxa-stat-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #9333ea, #c084fc) !important;
    border-radius: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
}

.voxa-stat-content {
    flex: 1 !important;
    min-width: 0 !important;
}

.voxa-hero-visual {
    position: relative;
}

.voxa-hero-image-wrapper {
    position: relative;
    padding: 40px;
}

.voxa-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}

.voxa-hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.voxa-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.voxa-floating-card i {
    color: #c084fc;
    font-size: 16px;
}

.voxa-card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.voxa-card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.voxa-card-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

.voxa-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.voxa-scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voxa-scroll-indicator:hover {
    border-color: #c084fc;
}

.voxa-scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: #c084fc;
    border-radius: 50%;
    animation: scroll-down 2s infinite;
}

/* Voxa About Section Styles */
.voxa-about-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #16051e 0%, #0a0118 100%);
    overflow: hidden;
}

.voxa-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.voxa-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.voxa-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
    top: -300px;
    right: -300px;
}

.voxa-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.2) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
}

.voxa-about-section .container {
    position: relative;
    z-index: 1;
}

.voxa-about-visual {
    position: relative;
}

.voxa-about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.voxa-about-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.voxa-about-experience {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.95) 0%, rgba(192, 132, 252, 0.95) 100%);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
}

.voxa-about-experience h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.voxa-about-experience p {
    font-size: 14px;
    color: #ffffff;
    margin: 5px 0 0;
    font-weight: 500;
}

.voxa-about-image-secondary {
    position: absolute;
    top: 50px;
    right: -50px;
    width: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.voxa-about-image-secondary img {
    width: 100%;
    height: auto;
}

.voxa-about-stats-card {
    position: absolute;
    bottom: 50px;
    right: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.voxa-about-stats-card .voxa-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.voxa-about-stats-card i {
    font-size: 24px;
    color: #c084fc;
}

.voxa-about-stats-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.voxa-about-stats-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.voxa-about-content {
    padding-left: 50px;
}

.voxa-section-badge {
    display: inline-block;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.voxa-section-badge span {
    color: #9333ea;
    font-size: 14px;
    font-weight: 500;
}

.voxa-section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.voxa-section-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.voxa-about-features {
    margin-bottom: 40px;
}

.voxa-feature-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.voxa-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voxa-feature-icon i {
    font-size: 24px;
    color: #9333ea;
}

.voxa-feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.voxa-feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.voxa-progress-bars {
    margin-bottom: 40px;
}

.voxa-progress-item {
    margin-bottom: 25px;
}

.voxa-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.voxa-progress-header span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.voxa-progress-value {
    color: #c084fc !important;
}

.voxa-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.voxa-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9333ea 0%, #c084fc 100%);
    border-radius: 10px;
    position: relative;
    animation: progress-animation 2s ease-out;
}

.voxa-about-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.voxa-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.voxa-btn-text:hover {
    color: #c084fc;
}

/* Fix spacing between portfolio and testimonials */
.portfolio1-section-area {
    padding-bottom: 100px !important;
    background: linear-gradient(180deg, #16051e 0%, #0a0118 100%);
}

.voxa-testimonials-section {
    padding-top: 100px !important;
    margin-top: 0 !important;
    background: linear-gradient(180deg, #0a0118 0%, #16051e 100%);
}

/* Ensure proper separation */
#portfolio {
    position: relative;
    z-index: 10;
}

#testimonials {
    position: relative;
    z-index: 10;
    clear: both;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        top: 8px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes progress-animation {
    from {
        width: 0 !important;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .voxa-hero-title {
        font-size: 48px;
    }
    
    .voxa-hero-description {
        font-size: 16px;
    }
    
    .voxa-hero-content {
        padding: 80px 0;
    }
    
    .voxa-about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .voxa-about-image-secondary {
        display: none;
    }
    
    .voxa-section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .voxa-hero-title {
        font-size: 36px;
    }
    
    .voxa-hero-stats {
        gap: 20px;
    }
    
    .voxa-stat-item h3 {
        font-size: 25px !important;
    }
    
    .voxa-hero-cta {
        flex-direction: column;
    }
    
    .voxa-btn-primary,
    .voxa-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .voxa-floating-card {
        display: none;
    }
    
    .voxa-hero-image-wrapper {
        padding: 20px;
    }
    
    .voxa-about-stats-card {
        position: static;
        margin-top: 20px;
    }
    
    .voxa-about-experience {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .voxa-about-experience h3 {
        font-size: 28px;
    }
}

/* Ensure floating elements in about page match service pages */
.voxa-service-hero-section .voxa-tech-card {
    width: 60px;
    height: 60px;
    background: rgba(147, 51, 234, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c084fc;
    font-size: 24px;
}

.serve-section-area {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0118 0%, #16051e 100%);
    overflow: hidden;
}
/* Voxa Services Section */
.voxa-services-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0118 0%, #16051e 100%);
    overflow: hidden;
}

.voxa-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.voxa-services-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
}

.voxa-services-section .container {
    position: relative;
    z-index: 1;
}

.voxa-services-header {
    margin-bottom: 80px;
}

.voxa-services-header .voxa-section-title {
    margin-bottom: 20px;
}

.voxa-services-header .voxa-section-description {
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards - Modern Design */
.voxa-service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.voxa-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9333ea 0%, #c084fc 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.voxa-service-card:hover::before {
    transform: scaleX(1);
}

.voxa-service-card:hover {
    background: rgba(147, 51, 234, 0.05);
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.voxa-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.voxa-service-card:hover .voxa-service-icon {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(192, 132, 252, 0.2) 100%);
    transform: rotate(5deg) scale(1.1);
}

.voxa-service-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voxa-service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.voxa-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.voxa-service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.voxa-service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.voxa-service-features li i {
    color: #c084fc;
    font-size: 12px;
}

.voxa-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9333ea;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.voxa-service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea 0%, #c084fc 100%);
    transition: width 0.3s ease;
}

.voxa-service-link:hover {
    color: #c084fc;
    gap: 12px;
}

.voxa-service-link:hover::after {
    width: 100%;
}

/* Service CTA Card */
.voxa-service-cta {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(192, 132, 252, 0.05) 100%);
    border: 2px solid rgba(147, 51, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.voxa-service-cta-content {
    text-align: center;
}

.voxa-service-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.voxa-service-cta p {
    font-size: 16px;
    margin-bottom: 30px;
}

.voxa-service-cta .voxa-btn-primary {
    margin: 0 auto;
}

/* Responsive adjustments for services */
@media (max-width: 991px) {
    .voxa-service-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .voxa-service-card {
        padding: 25px 20px;
    }
    
    .voxa-service-icon {
        width: 60px;
        height: 60px;
    }
    
    .voxa-service-icon i {
        font-size: 28px;
    }
    
    .voxa-service-card h3 {
        font-size: 20px;
    }
}

/* ===== Contact: Social Media, Office Hours, Quick Response ===== */
/* Shared heading and spacing for contact info cards */
.voxa-contact-info-card h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

/* Section card spacing for stacked cards */
.voxa-section-card {
  margin-bottom: 24px;
}

/* Social Links */
.voxa-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.voxa-social-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.voxa-social-button i {
  font-size: 18px;
}

.voxa-social-button:hover,
.voxa-social-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
  filter: brightness(1.1);
}

/* Brand variants */
.voxa-social-button.linkedin {
  background: rgba(0, 119, 181, 0.10);
  border-color: rgba(0, 119, 181, 0.30);
  color: #0077B5;
}

.voxa-social-button.twitter {
  background: rgba(29, 161, 242, 0.10);
  border-color: rgba(29, 161, 242, 0.30);
  color: #1DA1F2;
}

.voxa-social-button.telegram {
  background: rgba(0, 136, 204, 0.10);
  border-color: rgba(0, 136, 204, 0.30);
  color: #0088CC;
}

.voxa-social-button.whatsapp {
  background: rgba(37, 211, 102, 0.10);
  border-color: rgba(37, 211, 102, 0.30);
  color: #25D366;
}

/* Office Hours */
.voxa-office-hours {
  display: grid;
  gap: 12px;
}

.voxa-office-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.voxa-office-row:last-child {
  border-bottom: 0;
}

.voxa-office-label {
  color: rgba(255, 255, 255, 0.85);
}

.voxa-office-time {
  color: #00D4FF;
  font-weight: 600;
}

.voxa-office-closed {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* Quick Response card tweaks */
.voxa-response-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.voxa-response-card i {
  color: #00D4FF;
}

.voxa-response-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}
