/** @format */

:root {
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-primary-rgb: 0, 123, 255;
    --bd-accent-rgb: 255, 193, 7;
    --bd-violet-rgb: 108, 117, 125;
    --bd-pink-rgb: 214, 51, 132;
    --primary-color: #bb74e4;
    --secondary-color: #ffe085;
    --ternary-color: #e31144e6;
}

body {
    font-family: "Matangi", sans-serif;
}

.underline {
    position: relative;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    background: linear-gradient(to right, var(--primary-color), #e31144);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    background-clip: text;
}

.underline::after {
    content: "";
    background-image: url("/assets/slike/underline.svg");
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    position: absolute;
    height: 100%;
    left: 0;
}

.link-fix {
    text-decoration: none !important;
}

/* POCETNA */

.dark-gradient {
    background-color: #000000;
    background-image: linear-gradient(315deg, #0d0d0d 0%, #5e5368 74%);
}

.main-title {
    font-size: 3rem;
    text-align: center;
    max-width: 600px;
    font-weight: 700;
}

.main-description {
    font-size: 20px;
    margin-top: 16px;
    text-align: center;
}

.main-cta {
    position: relative;
    display: inline-block;
    padding: 8px 18px;
    font: 500 16px sans-serif;
    color: #fff;
    border: none;
    border-radius: 999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden; /* clip the pseudo */
    background: linear-gradient(136deg, #cba2f7, var(--primary-color));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}

.main-cta-large {
    padding: 12px 32px;
    font-size: 22px;
}

.main-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(322deg, #cba2f7, var(--primary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.main-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    color: white !important;
    cursor: pointer;
}

.main-cta:hover::before {
    opacity: 1;
}

/* Device container and responsive components */
.device-container {
    position: relative;
    width: 100%;
    height: 82vh;
    overflow: hidden;
}

.feature-phone {
    z-index: 2;
    max-height: 80vh;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

.feature-phone-side {
    position: absolute;
    width: auto;
    max-height: 60vh;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    opacity: 0.8;
    filter: brightness(0.9) saturate(0.9);
}

.feature-phone-right {
    left: 50%;
    top: 20%;
    transform: rotate(18deg) scale(0.85);
    z-index: 1;
}

.feature-phone-left {
    right: 50%;
    top: 20%;
    transform: rotate(-18deg) scale(0.85);
    z-index: 1;
}

.mb-full {
    margin-bottom: 500px;
}

.main-gradient {
    padding: 3rem 0;
    background-image: linear-gradient(
            180deg,
            rgba(var(--bs-body-bg-rgb), 0.01),
            rgb(255, 255, 255) 85%
        ),
        radial-gradient(
            ellipse at top left,
            rgba(var(--bs-primary-rgb), 0.5),
            transparent 50%
        ),
        radial-gradient(
            ellipse at top right,
            rgba(var(--bd-accent-rgb), 0.5),
            transparent 50%
        ),
        radial-gradient(
            ellipse at center right,
            rgba(var(--bd-violet-rgb), 0.5),
            transparent 50%
        ),
        radial-gradient(
            ellipse at center left,
            rgba(var(--bd-pink-rgb), 0.5),
            transparent 50%
        );
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
    .feature-box-left,
    .feature-box-right {
        width: 22%;
    }

    .feature-box-right {
        left: 57%;
    }

    .feature-box-left {
        right: 57%;
    }
}

@media (max-width: 992px) {
    .feature-box-left,
    .feature-box-right {
        width: 20%;
    }

    .feature-box-right {
        left: 55%;
    }

    .feature-box-left {
        right: 55%;
    }

    .feature-phone {
        max-height: 70vh;
    }
}

@media (max-width: 768px) {
    .feature-box-left,
    .feature-box-right {
        width: 18%;
        max-width: 180px;
    }

    .feature-box-right {
        left: 52%;
    }

    .feature-box-left {
        right: 52%;
    }

    .feature-phone {
        max-height: 60vh;
    }
}

@media (max-width: 576px) {
    .device-container {
        height: 60vh;
    }

    .feature-phone-side {
        max-height: 40vh;
    }

    .feature-box-left,
    .feature-box-right {
        width: 15%;
        padding: 10px;
        max-width: 120px;
    }

    .feature-box-right {
        left: 50%;
    }

    .feature-box-left {
        right: 50%;
    }

    .feature-phone {
        max-height: 50vh;
    }

    .main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 420px) {
    .feature-box-left,
    .feature-box-right {
        width: 25%;
        max-width: 100px;
        padding: 8px;
        font-size: 12px;
    }
}

.mt-top-navbar {
    margin-top: 80px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #000;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-glass:active {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(1px);
}

.btn-glass::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glass:hover::before {
    opacity: 1;
}

/* Glassmorphic navbar */

.navbar-glass {
    z-index: 5;
}

.navbar-container {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 12px;
}

/* Benefits Section Styling */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-title {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid #c7c7c780;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        136deg,
        rgba(203, 162, 247, 0.3),
        rgba(187, 116, 228, 0.3)
    );
    border-radius: 50%;
    padding: 1.2rem;
}

.benefit-icon-yellow {
    background: linear-gradient(
        136deg,
        rgba(255, 224, 132, 0.4),
        rgba(255, 224, 132, 0.4)
    );
}

.benefit-icon-green {
    background: linear-gradient(
        136deg,
        rgba(132, 255, 132, 0.3),
        rgba(132, 255, 132, 0.3)
    );
}

.benefit-icon-blue {
    background: linear-gradient(
        136deg,
        rgba(132, 171, 255, 0.3),
        rgba(132, 171, 255, 0.3)
    );
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #444;
}

.benefit-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 4rem 0;
    }

    .benefits-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .benefit-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 5rem 0;
    background: linear-gradient(
        to right,
        rgba(203, 162, 247, 0.05),
        rgba(255, 255, 255, 0.8),
        rgba(203, 162, 247, 0.05)
    );
    border-radius: 20px;
    margin: 2rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid #c7c7c780;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), #e31144);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-card:hover::before {
    opacity: 1;
}

.step-icon-container {
    position: relative;
    margin-bottom: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(187, 116, 228, 0.2);
    padding: 15px;
    margin-bottom: 1rem;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.step-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-preview {
    background: rgba(187, 116, 228, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    position: relative;
    margin-top: 1rem;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    font-family: serif;
}

.mini-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: #333;
    margin: 0;
}

/* BLOG SECTION */
#blog {
    border-radius: 20px;
    background: linear-gradient(to right, #ffd69685, #cfb6e4c7);
    background-image: linear-gradient(
        to right,
        rgba(255, 214, 150, 0.52),
        rgba(207, 182, 228, 0.78)
    );
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
}

.blog-title {
    line-height: 1.2;
    font-size: 2.5rem;
    font-weight: 500;
    color: #212529;
}

.blog-slider .slick-list {
    cursor: grab;
    padding-right: 80px;
    /* reveals 80px of the next slide */
    box-sizing: content-box;
}

.blog-slider .slick-list:active {
    cursor: grabbing;
}

.blog-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    margin: 0 8px;
}

.blog-card img {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.card-title {
    color: #fff;
    font-size: 1.1rem;
}

.play-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 0.5rem;
    font-size: 1rem;
    line-height: 1;
}

/* END OF BLOG SECTION*/

/* How It Works Section - Responsive Styling */
@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        max-width: 450px;
        width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 3rem 0;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* END How It Works Section */

/* Promotional Discount Section Styling */
.promo-section {
    background-image: linear-gradient(
            180deg,
            rgba(var(--bs-body-bg-rgb), 0.01),
            rgb(255, 255, 255) 85%
        ),
        radial-gradient(
            ellipse at top left,
            rgba(var(--bs-primary-rgb), 0.5),
            transparent 50%
        ),
        radial-gradient(
            ellipse at top right,
            rgba(var(--bd-accent-rgb), 0.5),
            transparent 50%
        ),
        radial-gradient(
            ellipse at center right,
            rgba(var(--bd-violet-rgb), 0.5),
            transparent 50%
        ),
        radial-gradient(
            ellipse at center left,
            rgba(var(--bd-pink-rgb), 0.5),
            transparent 50%
        );
    border-radius: 20px;
    margin: 2rem 0;
}

.promo-content {
    height: 100%;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.promo-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.discount-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(
        136deg,
        rgba(227, 17, 68, 0.9),
        rgba(227, 17, 68, 0.8)
    );
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 17, 68, 0.3);
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #888;
    text-decoration: line-through;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ternary-color);
}

.savings-text {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: rgba(var(--bd-accent-rgb), 0.2);
    color: #e31144;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Audio Demo Container Styling */
.audio-demo-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid #c7c7c780;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.demo-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.demo-description {
    margin-bottom: 1.5rem;
    color: #555;
}

.audio-player-container {
    position: relative;
}

.youtube-iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.audio-player-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.audio-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.audio-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audio-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.audio-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.audio-overlay svg {
    width: 30px;
    height: 30px;
}

.audio-controls {
    padding: 1rem;
}

.audio-controls audio {
    width: 100%;
    height: 40px;
}

.audio-info {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem 1rem;
}

.audio-title {
    font-weight: 600;
    color: #333;
}

.audio-duration {
    color: #888;
}

.audio-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Custom audio player styling */
audio::-webkit-media-controls-panel {
    background-color: #f8f8f8;
}

audio::-webkit-media-controls-play-button {
    background-color: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 992px) {
    .promo-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .audio-demo-container {
        margin-top: 2rem;
    }
}

/* Testimonials Section Styling */
.testimonials-section {
    padding: 4rem 2rem 5rem; /* Increased horizontal padding for arrow space */
    overflow: visible; /* Allow overflow for proper shadow and arrow display */
    position: relative; /* Ensure proper stacking context */
    margin-bottom: 20px;
    border-radius: 20px; /* Add rounded corners to contain the section */
    width: 100%; /* Ensure it stays within container */
    box-sizing: border-box; /* Include padding in width calculation */
}

.testimonials-title {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.testimonials-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #e31144);
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    text-align: center;
}

.testimonials-slider {
    padding: 0 40px; /* Only horizontal padding for arrows */
    overflow: visible; /* Allow arrows to be visible outside */
    margin: 0 auto 20px;
    position: relative; /* Ensure proper positioning context for arrows */
    box-sizing: border-box; /* Include padding in width calculation */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid #c7c7c780;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 0 15px; /* Add horizontal spacing between cards */
    height: auto; /* Let the content determine the height */
    box-sizing: border-box; /* Include border and padding in size */
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 1; /* Ensure hover card appears above others */
}

.testimonial-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: #ffcc33;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.6;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.author-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.author-verification {
    margin: 0;
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
}

.author-verification::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4cb63e;
    border-radius: 50%;
    margin-right: 5px;
}

/* Testimonials slider navigation styling */
.testimonials-slider .slick-dots {
    bottom: -40px;
}

.testimonials-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonials-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 40px;
    height: 40px;
    background: transparent !important; /* Ensure no background at all times */
    z-index: 10; /* Higher z-index to ensure visibility */
    transition: opacity 0.3s ease; /* Only opacity transition */
    position: absolute; /* Ensure absolute positioning */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    border: none;
    outline: none;
    box-shadow: none;
}

.testimonials-slider .slick-prev {
    left: 0;
    z-index: 9;
}

.testimonials-slider .slick-next {
    right: 0;
    z-index: 9;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
    color: var(--primary-color);
    font-size: 40px; /* Larger font size as requested */
    opacity: 0.75;
    font-family: "Matangi", sans-serif;
    font-weight: 600;
}

/* Custom arrow appearance */
.testimonials-slider .slick-prev:before {
    content: "❮"; /* Clean left chevron */
}

.testimonials-slider .slick-next:before {
    content: "❯"; /* Clean right chevron */
}

/* No movement or scaling on hover, only opacity/color change */
.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
    background: transparent !important;
    transform: translateY(-50%); /* Maintain vertical position */
}

.testimonials-slider .slick-prev:hover:before,
.testimonials-slider .slick-next:hover:before {
    color: var(--primary-color);
    opacity: 1;
}

/* Fix for edge shadows in slick slider */
.testimonials-slider .slick-list {
    margin: 0 auto;
    overflow: hidden; /* Contain slides within viewport */
    padding: 20px 0 !important; /* Vertical padding only to handle shadows */
    box-sizing: border-box; /* Ensure padding is included in width */
}

.testimonials-slider .slick-track {
    padding: 15px 0;
    display: flex; /* Use flexbox for better alignment */
    align-items: stretch; /* Ensure all cards stretch to same height */
    /* Remove any !important rules that could interfere with Slick's positioning */
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: inherit;
    }

    .testimonials-slider {
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        flex: inherit;
    }
}

/* App Download Section Styling */
.app-download-section {
    background: linear-gradient(
        to right,
        rgba(203, 162, 247, 0.1),
        rgba(255, 255, 255, 0.8),
        rgba(203, 162, 247, 0.1)
    );
    border-radius: 20px;
    margin: 3rem 0;
    padding: 4rem 2rem;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
}

.app-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #e31144);
    border-radius: 2px;
}

.app-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.app-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.app-badge {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: translateY(-5px);
}

.app-badge img {
    height: 50px;
    width: auto;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-weight: 600;
    color: #333;
}

.app-icons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.app-icon-item {
    position: relative;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 36px;
    transform: rotate(0deg);
}

.app-icon-item svg {
    width: 100%;
}

.app-icon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(187, 116, 228, 0.25);
}

.app-icon-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.app-icon-item:hover::before {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.app-icon {
    width: 100%;
    height: 150px;
    padding: 15px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.app-icon-item:hover .app-icon {
    filter: drop-shadow(0 8px 15px rgba(187, 116, 228, 0.3));
}

/* Animation for the icons */
.app-icon-item:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}
.app-icon-item:nth-child(2) {
    animation: float 7s ease-in-out infinite 0.5s;
}
.app-icon-item:nth-child(3) {
    animation: float 5s ease-in-out infinite 0.2s;
}
.app-icon-item:nth-child(4) {
    animation: float 8s ease-in-out infinite 0.7s;
}
.app-icon-item:nth-child(5) {
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* App download section responsive styles */
@media (max-width: 992px) {
    .app-icons-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        gap: 20px;
    }

    .app-icon {
        height: 130px;
    }

    .app-title {
        font-size: 2rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .app-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    .app-icons-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
        gap: 15px;
        padding: 10px;
    }

    .app-icon {
        height: 120px;
        padding: 10px;
    }

    .app-icon-item::before {
        font-size: 12px;
    }
}

/* Registration Page Styles */
.register-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 40px;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.register-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.register-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.register-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(187, 116, 228, 0.3);
    padding: 12px;
    transition: all 0.3s ease;
}

.register-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(187, 116, 228, 0.2);
    border-color: var(--primary-color);
}

.register-form .form-floating label {
    color: #777;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #9d52c4;
    text-decoration: underline;
}

.login-text {
    font-size: 0.95rem;
    color: #666;
}

.login-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-link:hover {
    text-decoration: underline;
}

.register-benefits {
    margin-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.register-benefits-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.register-benefits-list {
    list-style-type: none;
    padding: 0;
}

.register-benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.register-benefit-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
}

.password-strength-meter {
    height: 4px;
    width: 0%;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.password-strength-meter.weak {
    background-color: #ff4d4d;
}

.password-strength-meter.medium {
    background-color: #ffa64d;
}

.password-strength-meter.strong {
    background-color: #4dff4d;
}

.password-strength-meter.very-strong {
    background-color: #4d4dff;
}

/* Responsive styles for the registration page */
@media (max-width: 768px) {
    .register-card {
        padding: 25px;
        margin-top: 20px;
    }

    .register-title {
        font-size: 1.8rem;
    }
}

/* Login Page Styles */
.login-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 40px;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.login-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.login-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(187, 116, 228, 0.3);
    padding: 12px;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(187, 116, 228, 0.2);
    border-color: var(--primary-color);
}

.login-form .form-floating label {
    color: #777;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #9d52c4;
    text-decoration: underline;
}

.register-text {
    font-size: 0.95rem;
    color: #666;
}

.register-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.register-link:hover {
    text-decoration: underline;
}

.login-info {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.login-info-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.login-info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.login-info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.login-info-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Profile Page Styles */
.btn-close {
    position: absolute;
    top: 20px !important;
    right: 20px !important;
    color: #495057;
    opacity: 0.5;
}

.profile-header {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-avatar {
    margin-right: 20px;
}

.profile-avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(136deg, #cba2f7, var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}

.profile-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-size: 2rem;
}

.profile-subtitle {
    color: #666;
    margin-bottom: 0;
}

.profile-navigation {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px 20px 0;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-tabs {
    border-bottom: none;
}

.profile-tabs .nav-link {
    color: #666;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
}

.profile-tabs .nav-link:hover {
    color: #333;
}

.profile-tabs .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border-bottom: 3px solid var(--primary-color);
}

.profile-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.profile-section-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.btn-edit {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-edit:hover {
    background: var(--primary-color);
    color: #fff;
}

.profile-info-group {
    margin-bottom: 20px;
}

.profile-info-label {
    display: block;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.profile-info-value {
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
}

.profile-purchases table {
    border-collapse: separate;
    border-spacing: 0 5px;
}

.profile-purchases th {
    border-bottom: none;
    color: #666;
    font-weight: 600;
}

.profile-purchases td {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    vertical-align: middle;
    padding: 15px;
}

.profile-purchases tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.profile-purchases tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.invoice-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.invoice-link:hover {
    color: #9d52c4;
    text-decoration: underline;
}

.session-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.session-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.session-card-header {
    background: linear-gradient(
        136deg,
        rgba(203, 162, 247, 0.15),
        rgba(187, 116, 228, 0.15)
    );
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(187, 116, 228, 0.1);
}

.session-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.session-card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.session-card-body {
    padding: 20px;
    flex-grow: 1;
}

.session-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.session-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.85rem;
}

.session-card-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.session-play-btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 8px;
}

.badge {
    padding: 5px 10px;
    font-weight: 500;
}

/* Responsive styles for the profile page */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .profile-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .profile-title {
        font-size: 1.8rem;
    }

    .profile-card {
        padding: 20px;
    }

    .profile-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-edit {
        margin-top: 10px;
    }

    .profile-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.site-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-top {
    background: linear-gradient(
        to bottom,
        rgba(187, 116, 228, 0.1),
        rgba(255, 224, 133, 0.1)
    );
}

.footer-brand img {
    margin-bottom: 15px;
}

.footer-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-heading {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), #e31144);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-subscribe {
    display: flex;
}

.footer-input {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(187, 116, 228, 0.3);
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px 0 0 20px !important;
}

.footer-input:focus {
    box-shadow: 0 0 0 3px rgba(187, 116, 228, 0.2);
    border-color: var(--primary-color);
    outline: none;
}

.btn-subscribe {
    background: linear-gradient(136deg, #cba2f7, var(--primary-color));
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 0 20px 20px 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    opacity: 0.9;
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom-links li {
    position: relative;
    padding: 0 15px;
}

.footer-bottom-links li:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -3px;
    top: 0;
    color: #999;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-rights {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-rights {
        flex-direction: column;
        justify-content: center;
    }

    .footer-heading {
        margin-top: 20px;
    }

    .footer-bottom-links {
        margin-top: 10px;
    }
}

/* Audio Demo Section Styling */
.audio-demo-section {
    padding: 3rem 0;
}

/* Pack Cards Styling */
.promo-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pack-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(187, 116, 228, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pack-card-featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(187, 116, 228, 0.2);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(136deg, #cba2f7, var(--primary-color));
    color: white;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 4px 12px rgba(187, 116, 228, 0.3);
}

.pack-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pack-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.pack-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

.pack-body {
    padding: 25px;
}

.pack-features {
    margin-bottom: 25px;
}

.pack-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pack-feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.pack-feature-list .feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.pack-feature-list .feature-icon path {
    stroke: white;
    fill: none;
}

.pack-feature-list li span {
    font-size: 0.95rem;
    color: #444;
}

.pack-pricing {
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pack-card {
        margin-bottom: 30px;
    }
}
