
    #testimonial-section-unique {
        padding: 80px 0;
        background: #fcfdfe;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    #testimonial-section-unique .unique-header .unique-title {
        font-weight: 800; font-size: 2.2rem; color: #1e293b;
    }

    /* THE CARD FIX */
    #testimonial-section-unique .unique-premium-card {
        background: #fff;
        padding: 40px;
        border-radius: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        margin: 10px;
        border: 1px solid #f1f5f9;
    }

    #testimonial-section-unique .unique-testimonial-text {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #475569;
        margin-bottom: 25px;
        min-height: 80px;
    }

    /* THE IMAGE FIX: Fixed small size */
    #testimonial-section-unique .unique-user-photo {
        width: 60px !important;  /* Force width */
        height: 60px !important; /* Force height */
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;         /* Prevent shrinking in flexbox */
        border: 2px solid #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    #testimonial-section-unique .unique-user-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Prevents stretching */
    }

    #testimonial-section-unique .unique-user-box {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid #f8fafc;
    }

    #testimonial-section-unique .unique-user-info h5 {
        margin: 0; font-size: 1rem; font-weight: 700; color: #1e293b;
    }

    #testimonial-section-unique .unique-user-info span {
        font-size: 0.75rem; color: #004a99; font-weight: 700; text-transform: uppercase;
    }

    /* Form and Nav styles remain unique and protected */
    #unique-form-card {
        background: #fff; padding: 30px; border-radius: 20px; 
        box-shadow: 0 15px 35px rgba(0,0,0,0.05); border: 1px solid #f1f5f9;
    }

    #testimonial_owl_unique .owl-nav {
        position: absolute; top: -90px; right: 0; display: flex; gap: 8px;
    }

    #testimonial_owl_unique .owl-nav button {
        width: 40px; height: 40px; background: #fff !important; border-radius: 50% !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important; border: none !important;
    }

    .unique-premium-btn {
        width: 100%; background: #004a99; color: #fff; border: none;
        padding: 12px; border-radius: 10px; font-weight: 700; transition: 0.3s;
    }
    
    /* Scope to the unique form ID to prevent global overrides */
#unique-form-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

/* Header Styling */
#unique-form-card .unique-form-header h4 {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
    font-size: 1.25rem;
}

#unique-form-card .unique-form-header p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Input Group Logic */
#unique-form-card .unique-input-group {
    position: relative;
    margin-bottom: 18px;
}

#unique-form-card .unique-input-group input, 
#unique-form-card .unique-input-group textarea {
    width: 100%;
    padding: 14px 15px 14px 45px; /* Extra left padding for the icon */
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #1e293b;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

/* Input Focus Effect */
#unique-form-card .unique-input-group input:focus, 
#unique-form-card .unique-input-group textarea:focus {
    background: #ffffff;
    border-color: #004a99;
    box-shadow: 0 0 0 4px rgba(0, 74, 153, 0.05);
}

/* Icon Positioning */
#unique-form-card .unique-input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
}

/* Textarea icon alignment */
#unique-form-card .unique-input-group textarea + i {
    top: 22px;
    transform: none;
}

/* Custom File Upload Button */
#unique-form-card .unique-file-upload {
    margin-bottom: 18px;
}

#unique-form-card .unique-file-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    cursor: pointer;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

#unique-form-card .unique-file-upload label:hover {
    background: #e2e8f0;
    border-color: #004a99;
    color: #004a99;
}

#unique-form-card .unique-file-upload input[type="file"] {
    display: none; /* Hide the ugly default browser button */
}

/* Submit Button */
#unique-form-card .unique-premium-btn {
    width: 100%;
    background: #004a99;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#unique-form-card .unique-premium-btn:hover {
    background: #003366;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.15);
}

#testimonial-section-unique .unique-heading-line {
    width: 60px;               /* Length of the line */
    height: 5px;               /* Thickness */
    background: #004a99;       /* Your brand blue */
    margin-top: 15px;          /* Space between text and line */
    border-radius: 10px;       /* Makes the edges rounded and smooth */
    position: relative;
    overflow: hidden;
}

/* OPTIONAL: Add an animated shine effect to the line */
#testimonial-section-unique .unique-heading-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: line-shine 3s infinite;
}

@keyframes line-shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

