  /* Background image with opacity using pseudo-element */

   /* =========================
   Background Image
========================= */
.img-with-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('{{ asset('upload/sabian_symbol') }}/{{ $sabian_symbol_data->symbol_image ?? 'default.jpeg' }}');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.3;
    z-index: 0;
}

/* =========================
   Input + Autocomplete
========================= */
.input-container {
    position: relative;
    width: 100%;
}

/* Input */
/* .input-container input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
} */

.input-container input:focus {
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
}

/* Dropdown list */
.autocomplete-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    z-index: 9999;

    border: 1px solid #ccc;
    border-top: none;
    background: #fff;

    border-radius: 0 0 6px 6px;
    max-height: 220px;
    overflow-y: auto;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Dropdown item */
.autocomplete-items div {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;

    background: #fff;
    color: #000;

    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover / Active */
.autocomplete-items div:hover,
.autocomplete-items div.autocomplete-active {
    background-color: #007bff;
    color: #fff;
}

/* =========================
   Z-Index Fixes
========================= */
.myNav.sticky {
    z-index: 1000;
}

.page-loader {
    z-index: 9999;
}

/* =========================
   Testimonial Section
========================= */
.testimonial-section {
    width: 100%;
    padding: 70px 0;

    /* background: linear-gradient(135deg, #1c1c1c 0%, #000 100%); */

    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Carousel */
.testimonial-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Sliding Track */
.testimonial-track {
    display: flex;
    width: 100%;
    transition: transform 1s ease-in-out;
}

/* Each Slide */
.testimonial-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 380px;
    box-sizing: border-box;
}

/* Card */
.testimonial-card {
    max-width: 700px;
    margin: 0 auto;

    background: rgba(255, 255, 255, 0.08);
    padding: 40px 35px;

    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(8px);
}

/* Photo */
.testimonial-photo {
    width: 85px;
    height: 85px;

    border-radius: 50%;
    object-fit: cover;

    border: 2px solid #fff;
    margin-bottom: 15px;
}

/* Stars */
.rating_stars {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Text */
.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    font-size: 17px;
    color: #ffda79;
    margin: 0;
}

/* Navigation Buttons */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.2);
    border: none;

    color: #fff;
    font-size: 26px;

    padding: 10px 16px;
    border-radius: 50%;

    cursor: pointer;
    z-index: 10;

    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.testimonial-prev {
    left: 25px;
}

.testimonial-next {
    right: 25px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .testimonial-card {
        max-width: 90%;
        padding: 30px 20px;
    }

    .testimonial-prev,
    .testimonial-next {
        font-size: 20px;
        padding: 8px 12px;
    }
}